|
|
|
@ -34,15 +34,19 @@ type Hook struct { |
|
|
|
|
// HookList represents a list of API hook.
|
|
|
|
|
type HookList []*Hook |
|
|
|
|
|
|
|
|
|
// CreateHookOptionConfig has all config options in it
|
|
|
|
|
// required are "content_type" and "url" Required
|
|
|
|
|
type CreateHookOptionConfig map[string]string |
|
|
|
|
|
|
|
|
|
// CreateHookOption options when create a hook
|
|
|
|
|
type CreateHookOption struct { |
|
|
|
|
// required: true
|
|
|
|
|
// enum: gitea,gogs,slack,discord
|
|
|
|
|
// enum: dingtalk,discord,gitea,gogs,msteams,slack,telegram
|
|
|
|
|
Type string `json:"type" binding:"Required"` |
|
|
|
|
// required: true
|
|
|
|
|
Config map[string]string `json:"config" binding:"Required"` |
|
|
|
|
Events []string `json:"events"` |
|
|
|
|
BranchFilter string `json:"branch_filter" binding:"GlobPattern"` |
|
|
|
|
Config CreateHookOptionConfig `json:"config" binding:"Required"` |
|
|
|
|
Events []string `json:"events"` |
|
|
|
|
BranchFilter string `json:"branch_filter" binding:"GlobPattern"` |
|
|
|
|
// default: false
|
|
|
|
|
Active bool `json:"active"` |
|
|
|
|
} |
|
|
|
|