- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SetNotifyWebhook (0.07 sec)
-
internal/config/notify/legacy.go
Value: cfg.QueueDir, }, config.KV{ Key: target.RedisQueueLimit, Value: strconv.Itoa(int(cfg.QueueLimit)), }, } return nil } // SetNotifyWebhook - helper for config migration from older config. func SetNotifyWebhook(s config.Config, whName string, cfg target.WebhookArgs) error { if !cfg.Enable { return nil } if err := cfg.Validate(); err != nil { return err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 19 04:37:54 UTC 2024 - 13.1K bytes - Viewed (0) -
cmd/config-migrate.go
notify.SetNotifyPostgres(newCfg, k, args) } for k, args := range cfg.Notify.Redis { notify.SetNotifyRedis(newCfg, k, args) } for k, args := range cfg.Notify.Webhook { notify.SetNotifyWebhook(newCfg, k, args) } return newCfg, nil
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.4K bytes - Viewed (0)