mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
21 lines
558 B
Go
21 lines
558 B
Go
package constants
|
|
|
|
const (
|
|
NotificationTriggerTargetTask = "task"
|
|
NotificationTriggerTargetNode = "node"
|
|
)
|
|
|
|
const (
|
|
NotificationTriggerTaskFinish = "task_finish"
|
|
NotificationTriggerTaskError = "task_error"
|
|
NotificationTriggerTaskEmptyResults = "task_empty_results"
|
|
NotificationTriggerNodeStatusChange = "node_status_change"
|
|
NotificationTriggerNodeOnline = "node_online"
|
|
NotificationTriggerNodeOffline = "node_offline"
|
|
)
|
|
|
|
const (
|
|
NotificationTemplateModeRichText = "rich-text"
|
|
NotificationTemplateModeMarkdown = "markdown"
|
|
)
|