ish_manager 0.1.8.434 → 0.1.8.435

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: f59ba038998f76d3d5ecdcb6eb2f77479f920c263afe1d43ee460cf50ce3d544
4
- data.tar.gz: f0644f8f8d78f5d4a28d890a0448b29c967ed409d06a809a006a4eede8aff31a
3
+ metadata.gz: 798a7cda60e62a3ea1e31400a3bb56015da14defa0acf666e7a6192cbd3411ec
4
+ data.tar.gz: e389d43d156cb5380f3664731b4d89d0310fcf6d14850914c5f33d146d7f017e
5
5
  SHA512:
6
- metadata.gz: a86169cf6c2e4b5c32474bca91829d70e78de53dad447e2f88d9cf1e3a9c52ecad7f9776a3ee480997a2109fab55e1cfbe967ad595ee52d6a25840a9dbc890a8
7
- data.tar.gz: 28999bf3f30065d70c73698e26c1a46f194c4fbdc46c1cd75b4bcc346dcf732c3b11f315144b91ce74db1f69703eb8817acf1978f53e07e01832694cbecf3812
6
+ metadata.gz: f165e36c5134c6e5adfa4f5bc2182917460fdab427bca8b1d3bbe7644fcab8668fbf509443480364d3dd2f154af768484d6b3d21f441ca6edf98c80b95a97aff
7
+ data.tar.gz: d6aaff02e5dedb85b0809aae6a83196adab81f3cba8ce69639f5a20aee5abd379d34d852f12f26324285928e8f1fd416daa6497c12e437418de92598e21dc0fb
@@ -246,7 +246,6 @@ table.dataTable {
246
246
  .description {
247
247
  border: 1px solid red;
248
248
  padding: 1em;
249
- font-size: 1.6em;
250
249
  }
251
250
 
252
251
 
@@ -430,6 +429,8 @@ textarea.large {
430
429
  display: inline;
431
430
  }
432
431
 
432
+
433
+
433
434
  /* N */
434
435
 
435
436
  .n-selected {
@@ -25,11 +25,6 @@ div.videos-show {
25
25
  margin: 0 auto;
26
26
  width: 640px;
27
27
 
28
- .title {
29
- font-size: 1.4em;
30
- margin-left: .2em;
31
- }
32
-
33
28
  .row {
34
29
  display: flex;
35
30
  margin: 0;
@@ -101,9 +101,9 @@ class IshManager::GalleriesController < IshManager::ApplicationController
101
101
  end
102
102
 
103
103
  def update
104
- old_shared_profile_ids = @gallery.shared_profiles.map(&:id)
105
104
  authorize! :update, @gallery
106
105
 
106
+ old_shared_profile_ids = @gallery.shared_profiles.map(&:id)
107
107
  if params[:gallery][:shared_profiles].present?
108
108
  params[:gallery][:shared_profiles].delete('')
109
109
  end
@@ -40,7 +40,8 @@ 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, :user_profile => @current_profile
43
+ @videos = Video.unscoped.where( is_trash: false,
44
+ :user_profile => @current_profile
44
45
  ).order_by( :created_at => :desc )
45
46
 
46
47
  if params[:q]
@@ -81,10 +82,24 @@ class IshManager::VideosController < IshManager::ApplicationController
81
82
  @video = Video.unscoped.find params[:id]
82
83
  authorize! :update, @video
83
84
 
85
+ old_shared_profile_ids = @video.shared_profile_ids
86
+ if params[:video][:shared_profiles].present?
87
+ params[:video][:shared_profiles].delete('')
88
+ end
89
+ params[:video][:shared_profile_ids] = params[:video][:shared_profiles]
90
+ params[:video].delete :shared_profiles
91
+
84
92
  @video.update params[:video].permit!
85
93
  if @video.save
94
+
95
+ # if params[:video][:shared_profile_ids].present?
96
+ # new_shared_profiles = Ish::UserProfile.find( params[:video][:shared_profile_ids]
97
+ # ).select { |p| !old_shared_profile_ids.include?( p.id ) }
98
+ # ::IshManager::ApplicationMailer.shared_video( new_shared_profiles, @video ).deliver
99
+ # end
100
+
86
101
  flash[:notice] = 'Success.'
87
- redirect_to videos_path
102
+ redirect_to video_path(@video)
88
103
  else
89
104
  flash[:alert] = "No luck: #{@video.errors.messages}"
90
105
  render :edit
@@ -3,11 +3,11 @@
3
3
 
4
4
  <b>On</b> #{item.created_at.to_s[0...10]}
5
5
  - if item.user_profile
6
- <b>By:</b>
6
+ <b>By</b>
7
7
  = link_to item.user_profile.name, edit_user_profile_path( item.user_profile )
8
8
 
9
9
  -# - if item.tags.length > 0
10
10
  -# <b>Tags:</b> #{ item.tags.map(&:name).join(', ') }
11
11
 
12
12
  - if defined?(item.premium_tier) && item.premium_tier > 0
13
- <b>Tier:$#{item.premium_tier}</b>
13
+ <b>Tier $#{item.premium_tier}</b>
@@ -28,7 +28,8 @@
28
28
  = f.text_area :subhead
29
29
  .field
30
30
  = f.label :descr
31
- = f.text_area :descr, :class => :tinymce
31
+ = f.text_area :descr
32
+ .descr= raw newsitem.descr
32
33
 
33
34
  .col-sm-6
34
35
  .field
@@ -1,8 +1,7 @@
1
1
 
2
- .newsitems-edit
2
+ .newsitems-edit.max-width
3
3
  %h1
4
4
  Edit Newsitem
5
5
  = render 'form', :newsitem => @newsitem
6
6
 
7
- .debug
8
- = @newsitem.inspect
7
+ -# .debug= @newsitem.inspect
@@ -12,5 +12,4 @@
12
12
  Payments (purchased items) (#{@profile.payments.length}):
13
13
  - @profile.payments.each do |payment|
14
14
  .Card.item
15
- = payment.inspect
16
- = payment.item&.inspect
15
+ = payment
@@ -12,7 +12,7 @@
12
12
  = f.text_field :name
13
13
  .field
14
14
  = f.label :descr
15
- = f.text_field :descr
15
+ = f.text_area :descr
16
16
  .col.m6
17
17
  .field
18
18
  = f.label :video
@@ -28,10 +28,11 @@
28
28
  = f.label :user_profile
29
29
  = f.select :user_profile_id, @user_profiles_list
30
30
  .row
31
- .col.s4
32
- = f.check_box :is_public
33
- = f.label :is_public
34
- .col.s4
31
+ .col-md-6
32
+ -# = f.check_box :is_public
33
+ -# = f.label :is_public
34
+ = render 'ish_manager/application/form_nonpublic', f: f, model: video
35
+ .col-md-6
35
36
  = f.check_box :is_trash
36
37
  = f.label :is_trash
37
38
 
@@ -10,15 +10,16 @@
10
10
  - else
11
11
  %iframe{:allowfullscreen => "true", :frameborder => "0", :height => "480", :src => "#{video.video.url}", :width => "640"}
12
12
 
13
- .flex-row
13
+ .my-row
14
14
  .a= image_tag video.thumb.url(:thumb)
15
15
  .a
16
- .title
16
+ %h3
17
17
  = video.name.blank? ? t('videos.no_title') : video.name
18
18
  .meta-edit
19
19
  .inline= button_to '[x]', video_path( video ), :method => :delete, :data => { :confirm => 'Are you sure?' }
20
20
  = link_to '[~]', edit_video_path( video )
21
21
 
22
22
  = render 'ish_manager/application/metaline', :item => video
23
- .flex-row= link_to video.video_file_name, video.video.url
23
+ .flex-row
24
+ Download File:&nbsp;#{link_to video.video_file_name, video.video.url}
24
25
 
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.434
4
+ version: 0.1.8.435
5
5
  platform: ruby
6
6
  authors:
7
7
  - piousbox
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-15 00:00:00.000000000 Z
11
+ date: 2023-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails