ca630e652f
Change-Id: I81307a5a532123528ff2ab9616e7b5e3c5091bf7
14 lines
274 B
Plaintext
14 lines
274 B
Plaintext
from evoque_dashboard import exceptions
|
|
|
|
DASHBOARD = 'ticket'
|
|
ADD_INSTALLED_APPS = [
|
|
'evoque_dashboard'
|
|
]
|
|
DEFAULT = True
|
|
|
|
ADD_EXCEPTIONS = {
|
|
'recoverable': exceptions.RECOVERABLE,
|
|
'not_found': exceptions.NOT_FOUND,
|
|
'unauthorized': exceptions.UNAUTHORIZED,
|
|
}
|