Skip to content

Instantly share code, notes, and snippets.

@SachaG
Created December 23, 2016 03:53
Show Gist options
  • Save SachaG/6630c620b92d3cae806ea4ba96827c12 to your computer and use it in GitHub Desktop.
Save SachaG/6630c620b92d3cae806ea4ba96827c12 to your computer and use it in GitHub Desktop.
Nova schema
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