create constants for user roles

This commit is contained in:
memeriau
2022-05-02 20:46:54 +02:00
parent 514cf1b833
commit 42586c7fde
3 changed files with 14 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
type rolesType = {
[key: string]: string
}
const ROLES: rolesType = {
ASSIGNER: "répartiteur",
TEAMLEAD: "référent",
}
export default ROLES