Files
crawlab/core/constants/notification.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"
)