diff --git a/pkg/routes/api/v1/user_webhooks.go b/pkg/routes/api/v1/user_webhooks.go index ef715d159..5c9d0d51e 100644 --- a/pkg/routes/api/v1/user_webhooks.go +++ b/pkg/routes/api/v1/user_webhooks.go @@ -63,6 +63,8 @@ func GetUserWebhooks(c *echo.Context) error { for _, w := range ws { w.Secret = "" + w.BasicAuthUser = "" + w.BasicAuthPassword = "" if createdBy, has := users[w.CreatedByID]; has { w.CreatedBy = createdBy }