diff options
| author | stone <jules+okfprojz@okfoc.us> | 2015-11-30 16:24:26 -0500 |
|---|---|---|
| committer | stone <jules+okfprojz@okfoc.us> | 2015-11-30 16:24:26 -0500 |
| commit | 905d3e261abbb9fcc800668624b0e2cddcad00cb (patch) | |
| tree | d5d727a3f06374509df0ca18915bf39963f8d7e6 | |
| parent | 6c3430ef2b3589dd9429db68c2466401c4a62d54 (diff) | |
new flags
| -rw-r--r-- | db.json | 17 | ||||
| -rw-r--r-- | index.js | 2 |
2 files changed, 13 insertions, 6 deletions
@@ -107,7 +107,8 @@ } ], "__index": "0", - "dateCreated": "Thu, 05 Nov 2015 04:46:29 GMT" + "dateCreated": "Thu, 05 Nov 2015 04:46:29 GMT", + "store": "true" }, { "id": "multiple-images", @@ -134,8 +135,9 @@ "caption": "" } ], - "__index": 1, - "dateCreated": "Fri, 06 Nov 2015 00:46:56 GMT" + "__index": "1", + "dateCreated": "Fri, 06 Nov 2015 00:46:56 GMT", + "store": "false" }, { "id": "video-post", @@ -150,8 +152,9 @@ "caption": "" } ], - "__index": 2, - "dateCreated": "Fri, 06 Nov 2015 00:53:21 GMT" + "__index": "2", + "dateCreated": "Fri, 06 Nov 2015 00:53:21 GMT", + "store": "false" } ], "page": [ @@ -221,7 +224,9 @@ ], "__index": "0", "dateCreated": "Fri, 20 Nov 2015 00:45:03 GMT", - "collection": "STONE ISLAND FW_'015 '016" + "collection": "STONE ISLAND FW_'015 '016", + "FitsLarge": "false", + "BackgroundIsGray": "true" } ] }
\ No newline at end of file @@ -43,6 +43,8 @@ var app = okcms.createApp({ title: {type: 'string'}, collection: {type: 'string'}, StoreIsOpen: {type: 'enum', options: ["true","false"] }, + FitsLarge: {type: 'enum', options: ["true","false"] }, + BackgroundIsGray: {type: 'enum', options: ["true","false"] }, ClosedStoreImages: {type: 'captioned-image-list'}, }, }, |
