2017-03-14 20:04:11 +01:00
|
|
|
DOC_SUPPORT_EVENTS = [
|
2021-02-12 08:20:45 +01:00
|
|
|
"document_active",
|
|
|
|
"document_created",
|
|
|
|
"document_archived",
|
|
|
|
"document_unarchived",
|
|
|
|
"document_publicized",
|
|
|
|
"document_title_changed",
|
|
|
|
"document_content_changed",
|
|
|
|
"document_trashed",
|
|
|
|
"document_publicized",
|
2017-03-14 20:04:11 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
QUESTION_SUPPORT_EVENTS = [
|
2021-02-12 08:20:45 +01:00
|
|
|
"question_archived",
|
|
|
|
"question_created",
|
|
|
|
"question_trashed",
|
|
|
|
"question_unarchived",
|
|
|
|
"question_answer_archived",
|
|
|
|
"question_answer_content_changed",
|
|
|
|
"question_answer_created",
|
|
|
|
"question_answer_trashed",
|
|
|
|
"question_answer_unarchived",
|
2017-03-14 20:04:11 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
MESSAGE_SUPPORT_EVENTS = [
|
2021-02-12 08:20:45 +01:00
|
|
|
"message_archived",
|
|
|
|
"message_content_changed",
|
|
|
|
"message_created",
|
|
|
|
"message_subject_changed",
|
|
|
|
"message_trashed",
|
|
|
|
"message_unarchived",
|
|
|
|
"comment_created",
|
2017-03-14 20:04:11 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
TODOS_SUPPORT_EVENTS = [
|
2021-02-12 08:20:45 +01:00
|
|
|
"todolist_created",
|
|
|
|
"todolist_description_changed",
|
|
|
|
"todolist_name_changed",
|
|
|
|
"todo_assignment_changed",
|
|
|
|
"todo_completed",
|
|
|
|
"todo_uncompleted",
|
|
|
|
"todo_created",
|
|
|
|
"todo_due_on_changed",
|
2017-03-14 20:04:11 +01:00
|
|
|
]
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
SUPPORT_EVENTS = (
|
|
|
|
DOC_SUPPORT_EVENTS + QUESTION_SUPPORT_EVENTS + MESSAGE_SUPPORT_EVENTS + TODOS_SUPPORT_EVENTS
|
|
|
|
)
|