mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 08:53:00 +08:00
14 lines
255 B
Python
14 lines
255 B
Python
# User Types for UserAuth
|
|
# NB: Do not change these values else you will have to migrate the db
|
|
|
|
DISPATCH_CONTACT = "dcuser"
|
|
CLIENT_CONTACT = "ccuser"
|
|
LABORATORY_CONTACT = "lcuser"
|
|
|
|
|
|
class Themes:
|
|
DARK = "dark"
|
|
LIGHT = "light"
|
|
|
|
|
|
themes = Themes()
|