caboose-cms 0.5.6 → 0.5.7
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 +8 -8
- data/app/controllers/caboose/products_controller.rb +2 -2
- data/app/models/caboose/product.rb +2 -0
- data/lib/caboose/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzQ3NGMzNjNhNWE2NWYyNGZjNjk1MWQ2ZjJkNWJhNTMyYmU4YmJjMQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTZjMzAxMGUxYTFhNDY3ZWY5NGY4NzJhMmViZGU0MjQxZjI4NWRhMw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YjAyNWIzOWIyNTdlNDgwMjFkMjljODcyYjIyNzhjYjRlNGMxNjZhNjgxM2Zj
|
10
|
+
MWJhNWU0ZTIxMzBhYzliODliN2U5MTU4NTUwNGQ4ZTJiMTVkMjkxM2UzNTM3
|
11
|
+
Y2QwZThhODg0MDIyYTViMDMzNzEzODA2ZDFiMzQ0YTBhYWE0Nzc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OWNjNDk4YjhlNGIyNGFiMDM0OGVjMDA5MWU1YWMzNWIxYmQzYmI1NTYyZmRk
|
14
|
+
ZTM4OGE2YTExYmNjZTU1MjEyNWI3MDg4YTBjZWVhY2JkNjU3Y2M3MTM1NDM5
|
15
|
+
YWE5ZmE1Nzg1ZjUwZGVhN2MzYmMxZTAxM2RmYTM5YWM4OWFiMDE=
|
@@ -323,7 +323,7 @@ module Caboose
|
|
323
323
|
})
|
324
324
|
render :json => {
|
325
325
|
:pager => pager,
|
326
|
-
:models => pager.items
|
326
|
+
:models => pager.items
|
327
327
|
}
|
328
328
|
end
|
329
329
|
|
@@ -348,7 +348,7 @@ module Caboose
|
|
348
348
|
# GET /admin/products/:id/json
|
349
349
|
def admin_json_single
|
350
350
|
p = Product.find(params[:id])
|
351
|
-
render :json => p
|
351
|
+
render :json => p
|
352
352
|
end
|
353
353
|
|
354
354
|
# GET /admin/products/:id/general
|
data/lib/caboose/version.rb
CHANGED