mirror of
https://github.com/simon987/task_tracker.git
synced 2025-12-14 07:19:02 +00:00
Implement per-project webhook secret
This commit is contained in:
@@ -172,3 +172,19 @@ type ReleaseAR struct {
|
||||
Updated bool `json:"updated"`
|
||||
} `json:"content"`
|
||||
}
|
||||
|
||||
type WebhookSecretAR struct {
|
||||
Ok bool `json:"ok"`
|
||||
Message string `json:"message"`
|
||||
Content struct {
|
||||
WebhookSecret string `json:"webhook_secret"`
|
||||
} `json:"content"`
|
||||
}
|
||||
|
||||
type AccountAR struct {
|
||||
Ok bool `json:"ok"`
|
||||
Message string `json:"message"`
|
||||
Content struct {
|
||||
*storage.Manager `json:"manager"`
|
||||
} `json:"content"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user