Skip to content
Snippets Groups Projects
Unverified Commit 457c5b31 authored by Gilles Meyer's avatar Gilles Meyer Committed by GitHub
Browse files

[FIX] Spurious expert role in startup data (#18667)

parent a1b159c1
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@ import { Permissions } from '../../models';
Meteor.startup(() => {
// Add permissions for discussion
const permissions = [
{ _id: 'start-discussion', roles: ['admin', 'user', 'expert', 'guest'] },
{ _id: 'start-discussion-other-user', roles: ['admin', 'user', 'expert', 'owner'] },
{ _id: 'start-discussion', roles: ['admin', 'user', 'guest'] },
{ _id: 'start-discussion-other-user', roles: ['admin', 'user', 'owner'] },
];
for (const permission of permissions) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment