11 lines
314 B
JavaScript
11 lines
314 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'
|
|
}; |