Skip to content

Instantly share code, notes, and snippets.

@bibhuticoder
Created August 17, 2020 10:51
Show Gist options
  • Save bibhuticoder/c6f855980266bd0579c82652377a0de4 to your computer and use it in GitHub Desktop.
Save bibhuticoder/c6f855980266bd0579c82652377a0de4 to your computer and use it in GitHub Desktop.
const PERMISSIONS = {
"vendor": {
"products": ["POST", "PUT", "DELETE", "GET"],
"orders": ["POST", "PUT", "DELETE", "GET"],
"stores": ["POST", "PUT", "DELETE", "GET"],
"dashboard": ["GET"]
},
"customer": {
"products": ["GET"],
"orders": ["GET"],
"stores": ["GET"],
"comments": ["GET", "POST"],
"shopping-carts": ["GET", "POST"],
"dashboard": ["GET"]
},
"admin": {
"products": ["POST", "PUT", "DELETE", "GET"],
"orders": ["POST", "PUT", "DELETE", "GET"],
"stores": ["POST", "PUT", "DELETE", "GET"],
"comments": ["POST", "PUT", "DELETE", "GET"],
"shopping-carts": ["POST", "PUT", "DELETE", "GET"],
"dashboard": ["POST", "PUT", "DELETE", "GET"]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment