mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-27 05:24:01 +00:00
17 lines
197 B
Python
17 lines
197 B
Python
status_list = (
|
|
"sent",
|
|
"unsent",
|
|
"public",
|
|
"private",
|
|
"read",
|
|
"unread",
|
|
)
|
|
|
|
|
|
soft_delete_status_list = (
|
|
"active",
|
|
"deleted",
|
|
)
|
|
|
|
|
|
wrong_status_list = ("all", "bla")
|