ish_manager 0.1.8.471 → 0.1.8.473

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: 3041801c1b15c0929b1b230aa72313e7de831fb3609afc1cec4dd664b8422af1
4
- data.tar.gz: d2b711abd1fa459dfcdce279a58045d0cffab9ba1a00050deb511ef21083816b
3
+ metadata.gz: a3b95fb98acfcf04033ba69dbd7a10b86c21515d0ccbe1c7f6ad109f2f2fd88a
4
+ data.tar.gz: 14f7b4fcd867f2db13a52f5134ae1b76370dad9f4ca2da263c1c6fb1d584d0ff
5
5
  SHA512:
6
- metadata.gz: 49543de291e21a10bbf953b4a432d04fa665b81b7c9b7d5b58daf9b2bfa8d8c6ad83ffc178f077bed668835a3e60d9e11b1d41a9805c08a8b481c0664d29adbf
7
- data.tar.gz: 8a7cc1777b3e019742179abcacb9108fecca78d65e795074cb022af1d5cf5be033176720d5c9dee093edc0ef5b659b5bd7c137b7832ad30d99a408d32a9ebc88
6
+ metadata.gz: 3b9020667e6773781f76920a5f39716d255ca222d12dd94463e7a6bcc65ba214432cd372f1a472c5c286549edf04f9ef288f1eeccd94ffeb96fbcda2a0d112ab
7
+ data.tar.gz: 9ea41fd43030d3453c7ef25972b907773d4f2efba71fbd0ac0b8268eb756e1bb01d85b6d41a3405c4b5d151f671c83fed8c0a81fa5b44a6052f6ee6f2f7f0f5c
@@ -3,7 +3,7 @@
3
3
  $(document).ready(function () {
4
4
 
5
5
  const jwt_token = $("#Config").data('jwt-token')
6
- logg(jwt_token, 'jwt_token')
6
+ // logg(jwt_token, 'jwt_token')
7
7
 
8
8
  if ($(".invoices-new").length) {
9
9
 
@@ -40,14 +40,14 @@ class IshManager::GalleriesController < IshManager::ApplicationController
40
40
  authorize! :index, Gallery
41
41
  @page_title = 'Galleries'
42
42
  @galleries = Gallery.unscoped.where( ## This must be so for role `guy`. _vp_ 2022-10-03
43
- :is_done.in => [false, nil],
43
+ # :is_done.in => [false, nil],
44
44
  :is_trash.in => [false, nil],
45
- :user_profile => @current_profile,
45
+ # :user_profile => @current_profile,
46
46
  ).order_by( :created_at => :desc )
47
47
 
48
48
  if params[:q]
49
- @galleries = @galleries.where({ :name => /#{params[:q]}/i })
50
- # @galleries.selector.delete('is_done')
49
+ q = URI.decode(params[:q])
50
+ @galleries = @galleries.where({ :name => /#{q}/i })
51
51
  end
52
52
 
53
53
  @galleries = @galleries.page( params[:galleries_page] ).per( 10 )
@@ -40,9 +40,10 @@ class IshManager::VideosController < IshManager::ApplicationController
40
40
 
41
41
  def index
42
42
  authorize! :index, Video.new
43
- @videos = Video.unscoped.where( is_trash: false,
44
- :user_profile => @current_profile
45
- ).order_by( :created_at => :desc )
43
+ @videos = Video.unscoped.where({
44
+ is_trash: false,
45
+ # :user_profile => @current_profile
46
+ }).order_by( :created_at => :desc )
46
47
 
47
48
  if params[:q]
48
49
  @videos = @videos.where({ :name => /#{params[:q]}/i })
@@ -1,5 +1,7 @@
1
1
 
2
2
  #Config{ data: { jwt_token: @jwt_token } }
3
+ :javascript
4
+ localStorage.setItem('jwt_token', $("#Config").data('jwt-token') )
3
5
 
4
6
  .manager--main-footer
5
7
  .max-width
@@ -23,10 +25,11 @@
23
25
 
24
26
  .col-sm-4
25
27
  = button_to 'Logout', main_app.destroy_user_session_path, :method => :delete, data: { confirm: 'Are you sure?' }
26
- .set-jwt-token
27
28
 
28
- = button_tag 'Set JWT', class: 'set-jwt-token'
29
- .jwt-token
29
+ -# .set-jwt-token
30
+ -# = button_tag 'Set JWT', class: 'set-jwt-token'
31
+ -# .jwt-token
32
+
30
33
  = form_for @current_profile, url: profile_path(@current_profile), as: :profile do |f|
31
34
  .flex-row
32
35
  = f.label :per_page
@@ -30,6 +30,10 @@
30
30
  %i.material-icons refresh
31
31
  refresh
32
32
 
33
+ %br
34
+ %br
35
+ = render 'paginate', resource: @email_conversations, param_name: :conv_page, views_prefix: :ish_manager
36
+
33
37
  %table.conversations
34
38
  %tr
35
39
  %th
@@ -42,7 +46,6 @@
42
46
  %th Datetime
43
47
  %th Tags
44
48
 
45
- = render 'paginate', resource: @email_conversations, param_name: :conv_page, views_prefix: :ish_manager
46
49
  - @email_conversations.each do |conv|
47
50
  %tr{ class: [ conv.state ] }
48
51
  .item
@@ -65,4 +68,7 @@
65
68
  - conv.tags.each do |tag|
66
69
  .chip
67
70
  = tag.name
68
- = render 'paginate', resource: @email_conversations, param_name: :conv_page, views_prefix: :ish_manager
71
+
72
+ %br
73
+ = render 'paginate', resource: @email_conversations, param_name: :conv_page, views_prefix: :ish_manager
74
+
@@ -5,7 +5,7 @@
5
5
  <tr>
6
6
 
7
7
  <td valign="top" class="mcnTextContent"
8
- style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
8
+ style="padding-top:0; padding-right:160px; padding-bottom:9px; padding-left:160px;">
9
9
 
10
10
  <em>Copyright © Wasya Co</em><br><br>
11
11
 
@@ -13,7 +13,7 @@
13
13
 
14
14
  201 W 5th St 11th Floor, Austin, TX 78701<br><br>
15
15
 
16
- Want to change how you receive these emails? You can <br>
16
+ Want to change how you receive these emails? You can
17
17
  <%= link_to 'update your preferences', '#' %> or
18
18
  <%= link_to 'unsubscribe from this list', @unsubscribe_url %>.<br><br>
19
19
 
@@ -14,7 +14,8 @@
14
14
  <meta charset="UTF-8">
15
15
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
16
16
  <meta name="viewport" content="width=device-width, initial-scale=1">
17
- <title>Wasya Co offers exceptional deployment & development services in nodejs and a variety of other software stacks.</title>
17
+ <title>Wasya Co offers exceptional deployment & development services in nodejs and a variety of other software stacks.
18
+ </title>
18
19
 
19
20
  <style type="text/css">
20
21
  p {
@@ -475,6 +476,7 @@
475
476
  padding-top: 9px;
476
477
  padding-bottom: 9px;
477
478
  }
479
+
478
480
  #templateFooter .mcnTextContent,
479
481
  #templateFooter .mcnTextContent p {
480
482
  color: #656565;
@@ -483,6 +485,7 @@
483
485
  line-height: 150%;
484
486
  text-align: center;
485
487
  }
488
+
486
489
  #templateFooter .mcnTextContent a,
487
490
  #templateFooter .mcnTextContent p a {
488
491
  color: #656565;
@@ -524,7 +527,6 @@
524
527
  width: 100% !important;
525
528
  min-width: 100% !important;
526
529
  }
527
-
528
530
  }
529
531
 
530
532
  @media only screen and (max-width: 480px) {
@@ -538,7 +540,6 @@
538
540
  .mcnImage {
539
541
  width: 100% !important;
540
542
  }
541
-
542
543
  }
543
544
 
544
545
  @media only screen and (max-width: 480px) {
@@ -697,6 +698,13 @@
697
698
 
698
699
  }
699
700
 
701
+ @media only screen and (max-width: 480px) {
702
+ .template-description {
703
+ padding-left: 0 !important;
704
+ padding-right: 0 !important;
705
+ }
706
+ }
707
+
700
708
  @media only screen and (max-width: 480px) {
701
709
 
702
710
  /*
@@ -817,8 +825,7 @@
817
825
  <body>
818
826
  <!--*|IF:MC_PREVIEW_TEXT|*-->
819
827
  <!--[if !gte mso 9]><!----><span class="mcnPreviewText"
820
- style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;"
821
- >Wasya
828
+ style="display:none; font-size:0px; line-height:0px; max-height:0px; max-width:0px; opacity:0; overflow:hidden; visibility:hidden; mso-hide:all;">Wasya
822
829
  Co offers exceptional deployment & development services in nodejs and a variety of other software stacks.</span>
823
830
  <!--<![endif]-->
824
831
  <!--*|END:IF|*-->
@@ -873,31 +880,132 @@
873
880
  </table>
874
881
  <br /><br />
875
882
 
876
- <table cellpadding="0" cellspacing="0" width="100%">
877
- <tr>
878
- <td align="right">
879
- <img src="https://wasya.co/wp-content/uploads/2023/09/250x250-girl-pointing-1.png"
880
- alt="Good-looking office assistant" />
881
- </td>
882
- <td align="right" valign="top">
883
- <br />
884
- <h1>Ruby on Rails</h1>
885
- <h4><i>Web Application Development</i></h4>
886
883
 
887
- </td>
888
- </tr>
884
+ <!-- 2023-09-23 BEGIN -->
885
+ <table border="0" cellpadding="0" cellspacing="0" width="100%"
886
+ class="templateContainer">
887
+ <tbody>
888
+ <tr>
889
+ <td valign="top">
890
+ <!--[if (gte mso 9)|(IE)]>
891
+ <table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
892
+ <tr>
893
+ <td align="center" valign="top" width="300" style="width:300px;">
894
+ <![endif]-->
895
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="300"
896
+ class="columnWrapper">
897
+ <tbody>
898
+ <tr>
899
+ <td valign="top" class="columnContainer">
900
+ <table border="0" cellpadding="0" cellspacing="0" width="100%"
901
+ class="mcnTextBlock" style="min-width:100%;">
902
+ <tbody class="mcnTextBlockOuter">
903
+ <tr>
904
+ <td valign="top" class="mcnTextBlockInner"
905
+ style="padding-top:9px;">
906
+ <!--[if mso]>
907
+ <table align="left" border="0" cellspacing="0" cellpadding="0" width="100%" style="width:100%;">
908
+ <tr>
909
+ <![endif]-->
910
+ <!--[if mso]>
911
+ <td valign="top" width="300" style="width:300px;">
912
+ <![endif]-->
913
+ <table align="left" border="0" cellpadding="0" cellspacing="0"
914
+ style="max-width:100%; min-width:100%;" width="100%"
915
+ class="mcnTextContentContainer">
916
+ <tbody>
917
+ <tr>
918
+ <td valign="top" class="mcnTextContent"
919
+ style="padding-top:0; padding-right:18px; padding-bottom:9px; padding-left:18px;">
920
+
921
+ <img src="https://wasya.co/wp-content/uploads/2023/09/250x250-girl-pointing-1.png"
922
+ alt="Good-looking office assistant" /><!-- attractive -->
923
+
924
+ </td>
925
+ </tr>
926
+ </tbody>
927
+ </table>
928
+ <!--[if mso]>
929
+ </td>
930
+ <![endif]-->
931
+ <!--[if mso]>
932
+ </tr>
933
+ </table>
934
+ <![endif]-->
935
+ </td>
936
+ </tr>
937
+ </tbody>
938
+ </table>
939
+ </td>
940
+ </tr>
941
+ </tbody>
942
+ </table>
943
+ <!--[if (gte mso 9)|(IE)]>
944
+ </td>
945
+ <td align="center" valign="top" width="300" style="width:300px;">
946
+ <![endif]-->
947
+ <table align="left" border="0" cellpadding="0" cellspacing="0" width="300"
948
+ class="columnWrapper">
949
+ <tbody>
950
+ <tr>
951
+ <td valign="top" class="columnContainer">
952
+ <table border="0" cellpadding="0" cellspacing="0" width="100%"
953
+ class="mcnImageCardBlock">
954
+ <tbody class="mcnImageCardBlockOuter">
955
+ <tr>
956
+ <td class="mcnImageCardBlockInner" valign="top"
957
+ style="padding-top:9px; padding-right:18px; padding-bottom:9px; padding-left:18px;">
958
+ <table align="left" border="0" cellpadding="0" cellspacing="0"
959
+ class="mcnImageCardBottomContent" width="100%" >
960
+ <tbody>
961
+ <tr>
962
+ <td class="mcnImageCardBottomImageContent" align="left"
963
+ valign="top"
964
+ style="padding-top:0px; padding-right:0px; padding-bottom:0; padding-left:0px;">
965
+ <table style="width: 264px;"
966
+ class="mcpreview-image-uploader" data-mc-id="">
967
+ </table>
968
+ </td>
969
+ </tr>
970
+ <tr>
971
+ <td class="mcnTextContent" valign="top"
972
+ style="padding: 9px 18px;color: #F2F2F2;font-family: Helvetica;font-size: 14px;font-weight: normal;text-align: right;"
973
+ width="246">
974
+
975
+ <h1>Ruby on Rails</h1>
976
+ <h4><i>Web Application Development</i></h4>
977
+
978
+ </td>
979
+ </tr>
980
+ </tbody>
981
+ </table>
982
+ </td>
983
+ </tr>
984
+ </tbody>
985
+ </table>
986
+ </td>
987
+ </tr>
988
+ </tbody>
989
+ </table>
990
+ <!--[if (gte mso 9)|(IE)]>
991
+ </td>
992
+ </tr>
993
+ </table>
994
+ <![endif]-->
995
+ </td>
996
+ </tr>
997
+ </tbody>
889
998
  </table>
890
-
891
-
892
-
999
+ <!-- 2023-09-23 END -->
893
1000
 
894
1001
  <br />
895
1002
  <table align="center" border="0" cellpadding="0" cellspacing="0">
896
1003
  <tbody>
897
1004
  <tr>
898
- <td>
899
- <p>Wasya Co offers exceptional deployment & development services <br />
900
- in Ruby on Rails and a variety of other software stacks.</p>
1005
+ <td style="padding-top:0; padding-right:60px; padding-bottom:18px; padding-left:60px;"
1006
+ class='template-description' >
1007
+ <p>Wasya Co offers exceptional deployment & development services
1008
+ in Ruby on Rails and a variety of other software stacks.</p>
901
1009
  </td>
902
1010
  </tr>
903
1011
  </tbody>
@@ -920,9 +1028,10 @@
920
1028
 
921
1029
 
922
1030
  <a class="mcnButton " title="Read More"
923
- href='<%= obfuscate "#{@origin}#{@button_path}?#{@utm_tracking_str}" %>' target="_blank"
924
- style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;"
925
- >Learn More</a>
1031
+ href='<%= obfuscate "#{@origin}#{@button_path}?#{@utm_tracking_str}" %>'
1032
+ target="_blank"
1033
+ style="font-weight: bold;letter-spacing: -0.5px;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">Learn
1034
+ More</a>
926
1035
  </td>
927
1036
  </tr>
928
1037
  </tbody>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ish_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.471
4
+ version: 0.1.8.473
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox