ish_manager 0.1.8.257 → 0.1.8.258
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.scss +8 -0
- data/app/models/ish_manager/ability.rb +5 -0
- data/app/views/ish_manager/application/_main_header_manager.haml +2 -1
- data/app/views/ish_manager/maps/show.haml +3 -1
- data/app/views/ish_manager/markers/_form.haml +1 -1
- metadata +2 -5
- data/app/controllers/ish_manager/trash/ally_controller.rb +0 -8
- data/app/controllers/ish_manager/trash/stock_actions_controller.rb +0 -60
- data/app/controllers/ish_manager/trash/stock_options_controller.rb +0 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e880865158238e4e853e2ff014bcdf33d2f7a34c090d340e1444215c1445b204
|
4
|
+
data.tar.gz: c52428e4febc8b285e8eecdeed98734f1dc40da6fb28eb8c98f43a7f507fada0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10819c852f56a077077691f454b7894ceff83a6bfc0e0e7b6838fe9c86480b4a19e901f9513249f543c353ea87828591a4739b276eebdb80e3766f68d89b141d
|
7
|
+
data.tar.gz: e13e3aeedddfee4f4c798ef1350aa11a8f25d61c035bd923e1aa72f5c9a9cd332db63150f4b624ea3e786b891c75207eb72644d718d3d2af7615b3d02ef3b9d8
|
@@ -66,6 +66,11 @@ class IshManager::Ability
|
|
66
66
|
if user.profile && :manager == user.profile.role_name
|
67
67
|
can [ :create_newsitem, :show, :new_feature, :create_feature,
|
68
68
|
:index, :new, :create, :edit, :update ], City
|
69
|
+
|
70
|
+
can [ :edit, :index, :show, :update,
|
71
|
+
:new_marker, :edit_marker, :create_marker, :update_marker,
|
72
|
+
], Gameui::Map
|
73
|
+
|
69
74
|
end
|
70
75
|
|
71
76
|
|
@@ -10,8 +10,9 @@
|
|
10
10
|
%li{ :class => params[:controller] == 'ish_manager/galleries' ? 'active' : '' }= link_to 'Galleries', galleries_path
|
11
11
|
%li{ :class => params[:controller] == 'ish_manager/reports' ? 'active' : '' }= link_to 'Reports', reports_path
|
12
12
|
%li{ :class => params[:controller] == 'ish_manager/videos' ? 'active' : '' }= link_to 'Videos', videos_path
|
13
|
-
%li{ :class => params[:controller] == 'ish_manager/friends ' ? 'active' : '' }= link_to 'Friends', friends_path
|
13
|
+
%li{ :class => params[:controller] == 'ish_manager/friends ' ? 'active' : '' }= link_to 'Friends', friends_path
|
14
14
|
%ul.nav.nav-pills
|
15
|
+
%li{ :class => params[:controller] == 'ish_manager/maps' ? 'active' : '' }= link_to 'GameUi::Maps', maps_path
|
15
16
|
%li{ :class => params[:controller] == 'ish_manager/cities' ? 'active' : '' }= link_to 'Cities', cities_path
|
16
17
|
%li{ :class => params[:controller] == 'ish_manager/events' ? 'active' : '' }= link_to 'Events', events_path
|
17
18
|
%li{ :class => params[:controller] == 'ish_manager/venues' ? 'active' : '' }= link_to 'Venues', venues_path
|
@@ -21,13 +21,15 @@
|
|
21
21
|
%p.addToggle Markers (#{@map.markers.count}) [<>]
|
22
22
|
.markers-list
|
23
23
|
- @map.markers.each do |marker|
|
24
|
-
.
|
24
|
+
.flex-row.bordered
|
25
|
+
= image_tag marker.image.image.url(:original)
|
25
26
|
.flat-row
|
26
27
|
.a= marker.slug
|
27
28
|
.a= button_to '~', edit_marker_path(marker), method: :get
|
28
29
|
.a= button_to 'x', marker_path(marker), method: :delete, data: { confirm: 'Are you sure?' }
|
29
30
|
.a= link_to '[api]', api_marker_path(marker)
|
30
31
|
.a= link_to '[this map]', edit_map_path(marker.slug)
|
32
|
+
.hide
|
31
33
|
%ul.bullets
|
32
34
|
%li <b>item_type:</b> #{marker.item_type}
|
33
35
|
|
@@ -35,7 +35,7 @@
|
|
35
35
|
= f.label :image
|
36
36
|
= file_field_tag :image
|
37
37
|
.image-thumb
|
38
|
-
= image_tag(@marker.image.image.url(:
|
38
|
+
= image_tag(@marker.image.image.url(:original)) rescue nil
|
39
39
|
= image_tag('icons/10x10_red-cross.png', class: 'red-cross', style: "top: #{@marker.centerOffsetY-10}px; left: #{@marker.centerOffsetX-10}px;" )
|
40
40
|
.col.s3
|
41
41
|
.field
|
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.258
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-11-
|
11
|
+
date: 2021-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -213,9 +213,6 @@ files:
|
|
213
213
|
- app/controllers/ish_manager/sites_controller.rb
|
214
214
|
- app/controllers/ish_manager/stock_watches_controller.rb
|
215
215
|
- app/controllers/ish_manager/tags_controller.rb
|
216
|
-
- app/controllers/ish_manager/trash/ally_controller.rb
|
217
|
-
- app/controllers/ish_manager/trash/stock_actions_controller.rb
|
218
|
-
- app/controllers/ish_manager/trash/stock_options_controller.rb
|
219
216
|
- app/controllers/ish_manager/user_profiles_controller.rb
|
220
217
|
- app/controllers/ish_manager/users_controller.rb
|
221
218
|
- app/controllers/ish_manager/venues_controller.rb
|
@@ -1,60 +0,0 @@
|
|
1
|
-
|
2
|
-
class IshManager::StockActionsController < IshManager::ApplicationController
|
3
|
-
|
4
|
-
PERMITTED_PARAMS = [ :stock_watch, :is_active ]
|
5
|
-
|
6
|
-
def index
|
7
|
-
authorize! :index, Ish::StockAction
|
8
|
-
@profiles = IshModels::UserProfile.all
|
9
|
-
@stock_watches_list = Ish::StockWatch.all.map { |w| [w.to_s, w.id] }
|
10
|
-
@stock_options_list = Ish::StockOption.all.map { |o| [ o.to_s, o.id] }
|
11
|
-
@stock_actions = Ish::StockAction.all.includes( :profile )
|
12
|
-
@stock_action = Ish::StockAction.new
|
13
|
-
render 'index', :layout => 'ish_manager/application_no_materialize'
|
14
|
-
end
|
15
|
-
|
16
|
-
def create
|
17
|
-
@stock_action = Ish::StockAction.new params.require(:ish_stock_action).permit( PERMITTED_PARAMS )
|
18
|
-
@stock_action.profile = current_user.profile
|
19
|
-
authorize! :create, @stock_action
|
20
|
-
|
21
|
-
flag = true
|
22
|
-
if params[:ish_stock_action][:stock_options]
|
23
|
-
stock_options = Ish::StockOption.where( :id.in => params[:ish_stock_action][:stock_options] )
|
24
|
-
flag = stock_options.update_all( :stock_action_id => @stock_action.id )
|
25
|
-
end
|
26
|
-
if flag
|
27
|
-
flag = @stock_action.save
|
28
|
-
end
|
29
|
-
if flag
|
30
|
-
flash[:notice] = 'Created stock action.'
|
31
|
-
else
|
32
|
-
flash[:alert] = "Cannot create stock action: #{@stock_action.errors.messages}"
|
33
|
-
end
|
34
|
-
redirect_to :action => 'index'
|
35
|
-
end
|
36
|
-
|
37
|
-
def update
|
38
|
-
@stock_action = Ish::StockAction.find params[:id]
|
39
|
-
authorize! :update, @stock_action
|
40
|
-
|
41
|
-
flag = true
|
42
|
-
if params[:ish_stock_action][:stock_options]
|
43
|
-
stock_options = Ish::StockOption.where( :id.in => params[:ish_stock_action][:stock_options] )
|
44
|
-
flag = stock_options.update_all( :stock_action_id => @stock_action.id )
|
45
|
-
end
|
46
|
-
if flag
|
47
|
-
flag = @stock_action.update_attributes params.require(:ish_stock_action).permit( PERMITTED_PARAMS )
|
48
|
-
end
|
49
|
-
if flag
|
50
|
-
flash[:notice] = 'Updated stock action.'
|
51
|
-
else
|
52
|
-
flash[:alert] = "Cannot update stock action: #{@stock_action.errors.messages}"
|
53
|
-
end
|
54
|
-
redirect_to :action => 'index'
|
55
|
-
end
|
56
|
-
|
57
|
-
end
|
58
|
-
|
59
|
-
|
60
|
-
|
@@ -1,41 +0,0 @@
|
|
1
|
-
|
2
|
-
class IshManager::StockOptionsController < IshManager::ApplicationController
|
3
|
-
|
4
|
-
def index
|
5
|
-
authorize! :index, Ish::StockOption
|
6
|
-
@profiles = IshModels::UserProfile.all
|
7
|
-
@stock_options = Ish::StockOption.all.includes( :profile )
|
8
|
-
@stock_option = Ish::StockOption.new
|
9
|
-
render 'index', :layout => 'ish_manager/application_no_materialize'
|
10
|
-
end
|
11
|
-
|
12
|
-
def create
|
13
|
-
@stock_option = Ish::StockOption.new params[:ish_stock_option].permit!
|
14
|
-
@stock_option.profile = current_user.profile
|
15
|
-
authorize! :create, @stock_option
|
16
|
-
flag = @stock_option.save
|
17
|
-
|
18
|
-
if flag
|
19
|
-
flash[:notice] = 'Created stock option.'
|
20
|
-
else
|
21
|
-
flash[:alert] = "Cannot create stock option: #{@stock_option.errors.messages}"
|
22
|
-
end
|
23
|
-
redirect_to :action => 'index'
|
24
|
-
end
|
25
|
-
|
26
|
-
def update
|
27
|
-
@stock_option = Ish::StockOption.find params[:id]
|
28
|
-
authorize! :update, @stock_option
|
29
|
-
flag = @stock_option.update_attributes params[:ish_stock_option].permit!
|
30
|
-
if flag
|
31
|
-
flash[:notice] = 'Updated stock option.'
|
32
|
-
else
|
33
|
-
flash[:alert] = "Cannot update stock option: #{@stock_option.errors.messages}"
|
34
|
-
end
|
35
|
-
redirect_to :action => 'index'
|
36
|
-
end
|
37
|
-
|
38
|
-
end
|
39
|
-
|
40
|
-
|
41
|
-
|