mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
18 lines
571 B
Go
18 lines
571 B
Go
package constants
|
|
|
|
const (
|
|
NotificationTriggerTaskFinish = "task_finish"
|
|
NotificationTriggerTaskError = "task_error"
|
|
NotificationTriggerTaskEmptyResults = "task_empty_results"
|
|
NotificationTriggerTaskNever = "task_never"
|
|
NotificationTriggerNodeStatusChange = "node_status_change"
|
|
NotificationTriggerNodeOnline = "node_online"
|
|
NotificationTriggerNodeOffline = "node_offline"
|
|
NotificationTriggerNodeNever = "node_never"
|
|
)
|
|
|
|
const (
|
|
NotificationTemplateModeRichText = "rich-text"
|
|
NotificationTemplateModeMarkdown = "markdown"
|
|
)
|