You've already forked hotpocket
This commit is contained in:
17
services/backend/hotpocket_backend/apps/ui/constants.py
Normal file
17
services/backend/hotpocket_backend/apps/ui/constants.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
import enum
|
||||
|
||||
|
||||
class MessageLevelAlertClass(enum.Enum):
|
||||
debug = 'alert-secondary'
|
||||
info = 'alert-info'
|
||||
success = 'alert-success'
|
||||
warning = 'alert-warning'
|
||||
error = 'alert-danger'
|
||||
|
||||
|
||||
class StarUnstarAssociationViewMode(enum.Enum):
|
||||
STAR = 'STAR'
|
||||
UNSTAR = 'UNSTAR'
|
||||
Reference in New Issue
Block a user