mirror of
https://github.com/cheveguerra/Whaticket.git
synced 2026-04-17 19:26:18 +00:00
20 lines
324 B
JavaScript
20 lines
324 B
JavaScript
const rules = {
|
|
user: {
|
|
static: [],
|
|
},
|
|
|
|
admin: {
|
|
static: [
|
|
"drawer-admin-items:view",
|
|
"tickets-manager:showall",
|
|
"user-modal:editProfile",
|
|
"user-modal:editQueues",
|
|
"ticket-options:deleteTicket",
|
|
"ticket-options:transferWhatsapp",
|
|
"contacts-page:deleteContact",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default rules;
|