ish_manager 0.1.8.219 → 0.1.8.224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/ish_manager/application.css +0 -3
- data/app/controllers/ish_manager/galleries_controller.rb +6 -6
- data/app/controllers/ish_manager/videos_controller.rb +13 -9
- data/app/views/ish_manager/application/_main_header_admin.haml +2 -3
- data/app/views/ish_manager/application/_search.haml +1 -1
- data/app/views/ish_manager/galleries/_index_thumbs.haml +1 -3
- data/app/views/ish_manager/galleries/_index_title.haml +1 -1
- data/app/views/ish_manager/galleries/_menu.haml +1 -1
- data/app/views/ish_manager/user_profiles/index.haml +1 -2
- data/app/views/ish_manager/videos/_index.haml +9 -13
- data/app/views/ish_manager/videos/index.haml +3 -1
- data/app/views/ish_manager/videos/show.haml +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17ef25f7e30757abd440718a014ccc6c01e6358bc225ab7a43235dc64cefd15b
|
4
|
+
data.tar.gz: aeed4163d947a42ebc86b63a732899c9b0f2ea95fd21ab42662d3a5cac4e3765
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6b1a8b719762cc760d79025901245a30e6ef1e67e3d5be093c2fab960596e3f79692459d69a50f6253e933fd892ced4d6c0c49d00f7243652f378b5109e3914
|
7
|
+
data.tar.gz: 9b52b74a65ab93bc63fbbf22b79185440a69c6aaad01fe90d6500a0e4ac23045c1191be9dbb71dff6cbaaa11f62a25621a555bd2fe4acfb1b7b8bf50ecb57b3c
|
@@ -1,13 +1,13 @@
|
|
1
1
|
class IshManager::GalleriesController < IshManager::ApplicationController
|
2
2
|
|
3
3
|
before_action :set_lists
|
4
|
-
|
4
|
+
|
5
5
|
def index
|
6
6
|
authorize! :index, Gallery
|
7
7
|
@galleries = Gallery.unscoped.where( :is_trash => false, :user_profile => current_user.profile
|
8
8
|
).order_by( :created_at => :desc )
|
9
9
|
if params[:q]
|
10
|
-
@galleries = @galleries.where({ :name => /#{params[:q]}/i })
|
10
|
+
@galleries = @galleries.where({ :name => /#{params[:q]}/i })
|
11
11
|
end
|
12
12
|
@galleries = @galleries.page( params[:galleries_page] ).per( 20 )
|
13
13
|
|
@@ -16,8 +16,8 @@ class IshManager::GalleriesController < IshManager::ApplicationController
|
|
16
16
|
|
17
17
|
def shared_with_me
|
18
18
|
authorize! :index, Gallery
|
19
|
-
@galleries = current_user.profile.shared_galleries.unscoped.where( :is_trash => false
|
20
|
-
).order_by( :created_at => :desc
|
19
|
+
@galleries = current_user.profile.shared_galleries.unscoped.where( :is_trash => false
|
20
|
+
).order_by( :created_at => :desc
|
21
21
|
).page( params[:shared_galleries_page] ).per( 10 )
|
22
22
|
render params[:render_type]
|
23
23
|
end
|
@@ -68,7 +68,7 @@ class IshManager::GalleriesController < IshManager::ApplicationController
|
|
68
68
|
|
69
69
|
# puts! params[:gallery][:shared_profiles], 'shared profiles'
|
70
70
|
if @gallery.update_attributes( params[:gallery].permit! )
|
71
|
-
new_shared_profiles = IshModels::UserProfile.find( params[:gallery][:shared_profile_ids]
|
71
|
+
new_shared_profiles = IshModels::UserProfile.find( params[:gallery][:shared_profile_ids]
|
72
72
|
).select { |p| !old_shared_profile_ids.include?( p.id ) }
|
73
73
|
::IshManager::ApplicationMailer.shared_galleries( new_shared_profiles, @gallery ).deliver
|
74
74
|
flash[:notice] = 'Success.'
|
@@ -78,7 +78,7 @@ class IshManager::GalleriesController < IshManager::ApplicationController
|
|
78
78
|
flash[:alert] = 'No Luck. ' + @gallery.errors.messages.to_s
|
79
79
|
render :action => :edit
|
80
80
|
end
|
81
|
-
end
|
81
|
+
end
|
82
82
|
|
83
83
|
def show
|
84
84
|
begin
|
@@ -2,7 +2,7 @@
|
|
2
2
|
class IshManager::VideosController < IshManager::ApplicationController
|
3
3
|
|
4
4
|
before_action :set_lists
|
5
|
-
|
5
|
+
|
6
6
|
def index
|
7
7
|
authorize! :index, Video.new
|
8
8
|
@videos = Video.unscoped.where( is_trash: false, :user_profile => current_user.profile ).order_by( :created_at => :desc )
|
@@ -16,12 +16,16 @@ class IshManager::VideosController < IshManager::ApplicationController
|
|
16
16
|
tag = Tag.find params[:tag_id]
|
17
17
|
@videos = @videos.where( :tag => tag )
|
18
18
|
end
|
19
|
-
|
19
|
+
|
20
20
|
if params[:site_id]
|
21
21
|
@site = Site.find params[:site_id]
|
22
22
|
@videos = @site.videos
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
|
+
if params[:q]
|
26
|
+
@videos = @videos.where({ :name => /#{params[:q]}/i })
|
27
|
+
end
|
28
|
+
|
25
29
|
@videos = @videos.page( params[:videos_page] )
|
26
30
|
|
27
31
|
respond_to do |format|
|
@@ -54,7 +58,7 @@ class IshManager::VideosController < IshManager::ApplicationController
|
|
54
58
|
@tags_list = Tag.unscoped.or( { :is_public => true }, { :user_id => current_user.id } ).list
|
55
59
|
@cities_list = City.list
|
56
60
|
end
|
57
|
-
|
61
|
+
|
58
62
|
def create
|
59
63
|
@video = Video.new params[:video].permit(%i| name descr is_public is_trash is_feature x y lang youtube_id
|
60
64
|
tags city site user_profile premium_tier premium_purchases thumb video |)
|
@@ -69,9 +73,9 @@ class IshManager::VideosController < IshManager::ApplicationController
|
|
69
73
|
end
|
70
74
|
end
|
71
75
|
authorize! :create, @video
|
72
|
-
|
76
|
+
|
73
77
|
if @video.save
|
74
|
-
flash[:notice] = 'Success'
|
78
|
+
flash[:notice] = 'Success'
|
75
79
|
redirect_to videos_path
|
76
80
|
else
|
77
81
|
flash[:alert] = 'No luck'
|
@@ -80,11 +84,11 @@ class IshManager::VideosController < IshManager::ApplicationController
|
|
80
84
|
render :action => 'new'
|
81
85
|
end
|
82
86
|
end
|
83
|
-
|
87
|
+
|
84
88
|
def edit
|
85
89
|
@video = Video.unscoped.find params[:id]
|
86
90
|
authorize! :edit, @video
|
87
|
-
|
91
|
+
|
88
92
|
@tags_list = Tag.unscoped.or( { :is_public => true }, { :user_id => current_user.id } ).list
|
89
93
|
@cities_list = City.list
|
90
94
|
end
|
@@ -118,5 +122,5 @@ class IshManager::VideosController < IshManager::ApplicationController
|
|
118
122
|
end
|
119
123
|
redirect_to :action => 'index'
|
120
124
|
end
|
121
|
-
|
125
|
+
|
122
126
|
end
|
@@ -21,14 +21,13 @@
|
|
21
21
|
%li{ :class => params[:controller] == 'ish_manager/videos' ? 'active' : '' }= link_to 'Videos', videos_path
|
22
22
|
%li{ :class => params[:controller] == 'ish_manager/tags' ? 'active' : '' }= link_to 'Tags', tags_path
|
23
23
|
|
24
|
-
- proc do # nothing
|
25
24
|
%ul.nav.nav-pills
|
26
25
|
-# %li{ :class => params[:controller] == 'ish_manager/ally' ? 'active' : '' }= link_to 'Ally', ally_root_path
|
27
26
|
-# %li{ :class => params[:controller] == 'ish_manager/stock_actions' ? 'active' : '' }= link_to 'Stock Actions', stock_actions_path
|
28
27
|
-# %li{ :class => params[:controller] == 'ish_manager/stock_options' ? 'active' : '' }= link_to 'Stock Options', stock_options_path
|
29
28
|
%li{ :class => params[:controller] == 'ish_manager/stock_watches' ? 'active' : '' }= link_to 'Stock Watches', stock_watches_path
|
30
|
-
%li{ :class => params[:controller] == 'ish_manager/iron_condors' ? 'active' : '' }= link_to 'Iron Condors', iron_condors_path
|
31
|
-
%li{ :class => params[:controller] == 'ish_manager/covered_calls' ? 'active' : '' }= link_to 'Covered Calls', covered_calls_path
|
29
|
+
-# %li{ :class => params[:controller] == 'ish_manager/iron_condors' ? 'active' : '' }= link_to 'Iron Condors', iron_condors_path
|
30
|
+
-# %li{ :class => params[:controller] == 'ish_manager/covered_calls' ? 'active' : '' }= link_to 'Covered Calls', covered_calls_path
|
32
31
|
|
33
32
|
- proc do # nothing
|
34
33
|
%ul.nav.nav-pills
|
@@ -1 +1 @@
|
|
1
|
-
= render 'index'
|
1
|
+
= render 'ish_manager/galleries/index'
|
@@ -3,7 +3,7 @@
|
|
3
3
|
.row
|
4
4
|
.col-sm-12.col-md-12
|
5
5
|
%h1.center #{params[:action]} (#{@galleries.count}) #{link_to '[+]', new_gallery_path}
|
6
|
-
= render 'search'
|
6
|
+
= render 'search', path: galleries_path
|
7
7
|
%ul.menu-secondary
|
8
8
|
%li{ class: "#{params[:render_type] == 'index_titles' ? 'active' : ''}" }
|
9
9
|
= link_to 'titles list', galleries_index_titles_path( :render_type => Gallery::RENDER_THUMBS )
|
@@ -2,7 +2,7 @@
|
|
2
2
|
%h5
|
3
3
|
User Profiles (#{@user_profiles.count})
|
4
4
|
= link_to '[+]', new_user_profile_path
|
5
|
-
|
5
|
+
|
6
6
|
|
7
7
|
- @user_profiles.each do |profile|
|
8
8
|
.panel
|
@@ -17,7 +17,6 @@
|
|
17
17
|
%li <b>Role:</b> #{profile.role_name}
|
18
18
|
%li <b>User.email:</b> #{profile.user ? profile.user.email : nil}
|
19
19
|
%li <b>City:</b> #{profile.current_city ? profile.current_city.name : nil}
|
20
|
-
%li <b>About:</b> #{profile.about}
|
21
20
|
.col-sm-8
|
22
21
|
%h5 Shared galleries
|
23
22
|
- profile.shared_galleries.unscoped.where( :is_trash => false ).each do |g|
|
@@ -6,27 +6,23 @@
|
|
6
6
|
Videos (#{videos.count})
|
7
7
|
= link_to '[+]', new_video_path
|
8
8
|
%br
|
9
|
-
|
9
|
+
|
10
10
|
= paginate videos, :param_name => :videos_page, :views_prefix => 'ish_manager'
|
11
|
-
|
11
|
+
|
12
12
|
- videos.each do |video|
|
13
13
|
.panel
|
14
14
|
.panel-content
|
15
15
|
.row
|
16
|
-
.col-
|
17
|
-
.
|
16
|
+
.col-sm-6
|
17
|
+
.float-left
|
18
|
+
.thumb= image_tag video.thumb.url(:thumb)
|
19
|
+
.a
|
18
20
|
= link_to video.name, video_path( video )
|
19
21
|
.inline= button_to '[x]', video_path( video ), :method => :delete, :data => { :confirm => 'Are you sure?' }
|
20
22
|
= link_to '[~]', edit_video_path( video )
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
.center
|
25
|
-
- if @current_user.profile.videos_embed
|
26
|
-
= render 'ish_manager/videos/embed', :video => video
|
27
|
-
- else
|
28
|
-
= render 'ish_manager/videos/preview', :video => video
|
29
|
-
|
23
|
+
= render 'meta', :item => video
|
24
|
+
.c
|
25
|
+
|
30
26
|
= paginate videos, :param_name => :videos_page, :views_prefix => 'ish_manager'
|
31
27
|
%hr
|
32
28
|
|
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.
|
4
|
+
version: 0.1.8.224
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|