diff --git a/authentik/events/migrations/0017_notificationtransport_webhook_ca.py b/authentik/events/migrations/0017_notificationtransport_webhook_ca.py index d064f84bd4..bd475ddc57 100644 --- a/authentik/events/migrations/0017_notificationtransport_webhook_ca.py +++ b/authentik/events/migrations/0017_notificationtransport_webhook_ca.py @@ -17,7 +17,7 @@ class Migration(migrations.Migration): name="webhook_ca", field=models.ForeignKey( default=None, - help_text="When set, the selected ceritifcate is used to validate the certificate of the webhook server.", + help_text="When set, the selected certificate is used to validate the certificate of the webhook server.", null=True, on_delete=django.db.models.deletion.SET_DEFAULT, to="authentik_crypto.certificatekeypair", diff --git a/authentik/events/models.py b/authentik/events/models.py index 3e130f18a3..796c75cce2 100644 --- a/authentik/events/models.py +++ b/authentik/events/models.py @@ -360,7 +360,7 @@ class NotificationTransport(TasksModel, SerializerModel): default=None, on_delete=models.SET_DEFAULT, help_text=_( - "When set, the selected ceritifcate is used to " + "When set, the selected certificate is used to " "validate the certificate of the webhook server." ), ) diff --git a/blueprints/schema.json b/blueprints/schema.json index 23ea04d496..38e266f924 100644 --- a/blueprints/schema.json +++ b/blueprints/schema.json @@ -8373,7 +8373,7 @@ "type": "string", "format": "uuid", "title": "Webhook ca", - "description": "When set, the selected ceritifcate is used to validate the certificate of the webhook server." + "description": "When set, the selected certificate is used to validate the certificate of the webhook server." }, "webhook_mapping_body": { "type": "string", diff --git a/packages/client-ts/src/models/NotificationTransport.ts b/packages/client-ts/src/models/NotificationTransport.ts index 84b0bb52bf..5addb257f9 100644 --- a/packages/client-ts/src/models/NotificationTransport.ts +++ b/packages/client-ts/src/models/NotificationTransport.ts @@ -52,7 +52,7 @@ export interface NotificationTransport { */ webhookUrl?: string; /** - * When set, the selected ceritifcate is used to validate the certificate of the webhook server. + * When set, the selected certificate is used to validate the certificate of the webhook server. * @type {string} * @memberof NotificationTransport */ diff --git a/packages/client-ts/src/models/NotificationTransportRequest.ts b/packages/client-ts/src/models/NotificationTransportRequest.ts index fb22f46e40..8e6af19cbd 100644 --- a/packages/client-ts/src/models/NotificationTransportRequest.ts +++ b/packages/client-ts/src/models/NotificationTransportRequest.ts @@ -40,7 +40,7 @@ export interface NotificationTransportRequest { */ webhookUrl?: string; /** - * When set, the selected ceritifcate is used to validate the certificate of the webhook server. + * When set, the selected certificate is used to validate the certificate of the webhook server. * @type {string} * @memberof NotificationTransportRequest */ diff --git a/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts b/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts index 3b351d4e77..c4dded0b29 100644 --- a/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts +++ b/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts @@ -40,7 +40,7 @@ export interface PatchedNotificationTransportRequest { */ webhookUrl?: string; /** - * When set, the selected ceritifcate is used to validate the certificate of the webhook server. + * When set, the selected certificate is used to validate the certificate of the webhook server. * @type {string} * @memberof PatchedNotificationTransportRequest */ diff --git a/schema.yml b/schema.yml index eacfc47c58..9714bf47c0 100644 --- a/schema.yml +++ b/schema.yml @@ -43900,7 +43900,7 @@ components: type: string format: uuid nullable: true - description: When set, the selected ceritifcate is used to validate the + description: When set, the selected certificate is used to validate the certificate of the webhook server. webhook_mapping_body: type: string @@ -43942,7 +43942,7 @@ components: type: string format: uuid nullable: true - description: When set, the selected ceritifcate is used to validate the + description: When set, the selected certificate is used to validate the certificate of the webhook server. webhook_mapping_body: type: string @@ -49769,7 +49769,7 @@ components: type: string format: uuid nullable: true - description: When set, the selected ceritifcate is used to validate the + description: When set, the selected certificate is used to validate the certificate of the webhook server. webhook_mapping_body: type: string