Created
December 23, 2016 03:53
-
-
Save SachaG/6630c620b92d3cae806ea4ba96827c12 to your computer and use it in GitHub Desktop.
Nova schema
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
const MoviesSchema = { | |
name: { | |
type: String, | |
editableBy: ['members'], // editable by regular users | |
}, | |
year: { | |
type: String, | |
editableBy: ['admins'], // only editable by admins | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment