Last active
October 20, 2015 18:44
-
-
Save stephenplusplus/1f26f18de432b134e260 to your computer and use it in GitHub Desktop.
firebase model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // PRIVATE DASHBOARDS: | |
| "${projectId}:${userId}": { | |
| "${dashboardId}": { | |
| "modified": new Date(), | |
| "plugins": [ | |
| { | |
| "title": "Storage Browser", | |
| "state": "storage-browser", | |
| "repository": "jgeewax/gcloud-ui-storage-browser", | |
| "version": "v0.0.2", | |
| "id": "storage-browser" | |
| } | |
| ] | |
| } | |
| }, | |
| // SHARED DASHBOARDS: | |
| "dashboards": { | |
| "${dashboardId}": { | |
| "creator": "${userId}", | |
| "modified": new Date(), | |
| "plugins": [ | |
| { | |
| "title": "Storage Browser", | |
| "state": "storage-browser", | |
| "repository": "jgeewax/gcloud-ui-storage-browser", | |
| "version": "v0.0.2", | |
| "id": "storage-browser" | |
| } | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment