1
0
Fork 0
freesewing/config/roles.mjs

16 lines
219 B
JavaScript
Raw Normal View History

2023-05-08 09:31:37 +02:00
export const roles = {
levels: {
readNone: 0,
readSome: 1,
readOnly: 2,
writeSome: 3,
user: 4,
2023-08-18 17:26:41 +02:00
tester: 4,
2023-05-08 09:31:37 +02:00
curator: 5,
bughunter: 6,
support: 8,
admin: 9,
},
base: 'user',
}