caboose-cms 0.9.162 → 0.9.163
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/controllers/caboose/invoices_controller.rb +2 -3
- data/app/models/caboose/schema.rb +2 -1
- data/lib/caboose/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e81b5e959f5700883248c2a026030e0338423120
|
|
4
|
+
data.tar.gz: 75d8aa80a958573c030512067944fb4ee92dbbdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6ced582df9dd50f1d55894c263db7381c295aabb925800663c9e77f8fe3388231bce56149e2dcfd5a4523db49c9f536450bd3b1898fb75f6dfb0dc4d7d0e13f
|
|
7
|
+
data.tar.gz: e98813ecbc21ea355af831c02e7a1fb92d0da95696e0ac426ac654e2dd2b45cdaee215eb190d22d69ba19ad1aa37fcf00e9cc0421a15e177a059aa85e1aacdba
|
|
@@ -7,9 +7,8 @@ module Caboose
|
|
|
7
7
|
return if !user_is_allowed('invoices', 'view')
|
|
8
8
|
|
|
9
9
|
if !params[:game_id].blank?
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
invoice_ids = Colonnade::SuiteMenu.where(:menu_id => menu.id).pluq(:invoice_id) if menu
|
|
10
|
+
menu_ids = Colonnade::Menu.where(:game_id => params[:game_id]).pluq(:id)
|
|
11
|
+
invoice_ids = Colonnade::SuiteMenu.where(:menu_id => menu_ids).pluq(:invoice_id) if !menu_ids.blank?
|
|
13
12
|
invoice_ids = invoice_ids.to_s.gsub('[','').gsub(']','')
|
|
14
13
|
end
|
|
15
14
|
|
|
@@ -788,7 +788,8 @@ class Caboose::Schema < Caboose::Utilities::Schema
|
|
|
788
788
|
[ :sitemap_xml , :text ],
|
|
789
789
|
[ :robots_txt , :text ],
|
|
790
790
|
[ :theme_color , :string ],
|
|
791
|
-
[ :assets_url , :string ]
|
|
791
|
+
[ :assets_url , :string ],
|
|
792
|
+
[ :rets_office_id, :string ]
|
|
792
793
|
#[ :custom_css , :text ],
|
|
793
794
|
#[ :custom_css_files , :text ],
|
|
794
795
|
#[ :custom_js , :text ],
|
data/lib/caboose/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: caboose-cms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.163
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- William Barry
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pg
|