Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add missing webhook events to schema extension #2059

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions backend/config/config_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,13 @@ func (Webhook) JSONSchemaExtend(schema *jsonschema.Schema) {
"user",
"user.create",
"user.delete",
"user.login",
"user.update",
"user.update.email",
"user.update.email.create",
"user.update.email.delete",
"user.update.email.primary",
"user.update.password.update",
"user.update.username",
"user.update.username.create",
"user.update.username.delete",
Expand All @@ -94,11 +96,13 @@ func (Webhook) JSONSchemaExtend(schema *jsonschema.Schema) {
"user": "Triggers on: user creation, user deletion, user update, email creation, email deletion, change of primary email",
"user.create": "Triggers on: user creation",
"user.delete": "Triggers on: user deletion",
"user.login": "Triggers on: user login",
"user.update": "Triggers on: user update, email creation, email deletion, change of primary email",
"user.update.email": "Triggers on: email creation, email deletion, change of primary email",
"user.update.email.create": "Triggers on: email creation",
"user.update.email.delete": "Triggers on: email deletion",
"user.update.email.primary": "Triggers on: change of primary email",
"user.update.password.update": "Triggers on: change of password",
"user.update.username": "Triggers on: username creation, username deletion, change of username",
"user.update.username.create": "Triggers on: username creation",
"user.update.username.delete": "Triggers on: username deletion",
Expand Down
Loading