edumeet/server/userRoles.js
Håvar Aambø Fosstveit 1e5c0eb772 Lint and a small bug
2020-05-01 00:24:19 +02:00

11 lines
No EOL
304 B
JavaScript

module.exports = {
// These can be changed
ADMIN : 'admin',
MODERATOR : 'moderator',
PRESENTER : 'presenter',
AUTHENTICATED : 'authenticated',
// Don't change anything after this point
// All users have this role by default, do not change or remove this role
NORMAL : 'normal'
};