ish_manager 0.1.8.506 → 0.1.8.507

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a1655bc4586c7be2fc0d3f600510d7d30536054ce87c2fdaf084314b78439fa
4
- data.tar.gz: 6210a54fa0dbfa839adf118e85e9014a992eeb27d2dbeb3c9e95f2f038db095a
3
+ metadata.gz: 30d8fffb3963caf574e73ae38e2dcdffebcfd384416542f40ce217ebd37536c1
4
+ data.tar.gz: 4502f818961170f170e18c98152b6ea2155a34fe5becc5f7431d9a938d312ab2
5
5
  SHA512:
6
- metadata.gz: 67e252e726b3c850cbf53fb76eeae01dbf51ab0b02c2e4af139961a005a1d0fa7c1ca3f42601147a14c93095de7e66dbe8fdb5de023a1b672ca31aa1668fc77f
7
- data.tar.gz: bfdc4132df9dc1f42d7b97841fd078627281cab3b92bf8e82e70ba422b5946c21e18b1dd2cf585e5891abc1a48483a790edaa1e32cc639313ff61bb287bf5d28
6
+ metadata.gz: 748321ccb2752c0a8aa8cfa259808fe1056c279029707c54efe96dd8be36b63d1d64d1e7060dfecf3df52a7d8917161d87341b30220e8219f70635b0f578dcf2
7
+ data.tar.gz: aeac29f3bd45387784a06d185d28b3886b58c871f6e4bc69986b34fe48e32abd4a30df424a4c9d14621bf14bf68b583f12b102c4629599c0b21d85fa44244577
@@ -25,10 +25,16 @@
25
25
  .a <b>msg.id:</b> #{msg.id}
26
26
  .a <b>object_key:</b> #{msg.object_key}
27
27
  .a
28
- <b>N attachments:</b> #{msg.attachments.length}
28
+ <b>N photos:</b> #{msg.attachments.length}
29
+ .a
29
30
  <b>N email_attachments:</b>
30
31
  - msg.email_attachments.each_with_index do |attachment, idx|
31
- .a= link_to "Download #{attachment.filename} #{idx}", email_attachment_path( attachment )
32
+ - if attachment.filename
33
+ .a= link_to attachment.filename, email_attachment_path( attachment )
34
+ - else
35
+ .a
36
+ = link_to '[view]', email_attachment_path( attachment )
37
+ "#{attachment.content_type.split(';')[0]} #{attachment.filename} #{idx}"
32
38
 
33
39
 
34
40
  .position-absolute.top-0.right-0.datetime
@@ -8,6 +8,6 @@
8
8
  --<br />
9
9
  Victor Pudeyev<br />
10
10
  Software Engineering Lead<br />
11
- <a href="mailto:victor@piousbox.com">victor@piousbox.com</a>
11
+ <a href="mailto:victor@wasya.co">victor@wasya.co</a>
12
12
  |
13
- <a href="https://wasya.co/contact-us-4?<%= @utm_tracking_str %>">Book a chat</a><br />
13
+ <a href="https://tidycal.com/wasya-co/30min">Book a chat</a><br />
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.506
4
+ version: 0.1.8.507
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-08 00:00:00.000000000 Z
11
+ date: 2023-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -869,7 +869,6 @@ files:
869
869
  - app/views/ish_manager/user_profiles/index.haml
870
870
  - app/views/ish_manager/user_profiles/new.haml
871
871
  - app/views/ish_manager/user_profiles/show.haml
872
- - app/views/ish_manager/user_profiles/trash/_show.haml
873
872
  - app/views/ish_manager/users/_index.haml
874
873
  - app/views/ish_manager/users/index.haml
875
874
  - app/views/ish_manager/videos/_form.haml
@@ -1,39 +0,0 @@
1
- - profile ||= user_profile
2
-
3
- .user-profiles--show.max-width
4
- .header
5
- %h2.title Profile #{profile.email}
6
-
7
- .newsitems
8
- .title Newsitems (#{profile.newsitems.length})
9
- - profile.newsitems.each do |newsitem|
10
- = render 'ish_manager/newsitems/show', newsitem: newsitem
11
-
12
- .premium-purchases
13
- Payments (purchased items) (#{profile.payments.length}):
14
- - profile.payments.each do |payment|
15
- .Card.item
16
- = payment
17
-
18
-
19
- %ul
20
- %li
21
- <b>Email:</b> #{link_to profile.email, user_profile_path(profile)}
22
- = link_to '[edit]', edit_user_profile_path( profile )
23
- %li <b>Name:</b> #{profile.name}
24
- %li <b>Role:</b> #{profile.role_name}
25
- %li
26
- <b>Profile Photo:</b>
27
- = image_tag profile.profile_photo.photo.url(:thumb) rescue nil
28
-
29
- .col.s8
30
- %h5 Shared galleries
31
- - profile.shared_galleries.unscoped.where( :is_trash => false ).each do |g|
32
- &gt; #{link_to g.name, gallery_path(g.slug)} <br />
33
- = render 'meta', :item => g
34
- <hr />
35
-
36
- %h5 Newsitems
37
- - profile.newsitems.each do |n|
38
- = render 'ish_manager/newsitems/item', n: n, profile_id: profile.id
39
- <hr />