Fixes #1622 - split the api into 4 apps: core, history, schedule, storage - exploded the settings into testing/prod
11 lines
167 B
Python
11 lines
167 B
Python
GUEST = "G"
|
|
DJ = "H"
|
|
PROGRAM_MANAGER = "P"
|
|
ADMIN = "A"
|
|
|
|
USER_TYPES = {
|
|
GUEST: "Guest",
|
|
DJ: "DJ",
|
|
PROGRAM_MANAGER: "Program Manager",
|
|
ADMIN: "Admin",
|
|
}
|