From 67ad31c9c81ff1ed6dd8f6fc341f1df69ebc68e7 Mon Sep 17 00:00:00 2001 From: Cristian Ivascu Date: Fri, 24 Apr 2026 12:20:07 +0300 Subject: [PATCH] fix(webhook): use same casing for basic auth fields (#2688) --- frontend/src/components/misc/WebhookManager.vue | 4 ++-- frontend/src/modelTypes/IWebhook.ts | 4 ++-- frontend/src/models/webhook.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/misc/WebhookManager.vue b/frontend/src/components/misc/WebhookManager.vue index 0e5b8aebb..86c619a3d 100644 --- a/frontend/src/components/misc/WebhookManager.vue +++ b/frontend/src/components/misc/WebhookManager.vue @@ -145,7 +145,7 @@ function doDelete() { @@ -153,7 +153,7 @@ function doDelete() { diff --git a/frontend/src/modelTypes/IWebhook.ts b/frontend/src/modelTypes/IWebhook.ts index 137a386c5..dc1422464 100644 --- a/frontend/src/modelTypes/IWebhook.ts +++ b/frontend/src/modelTypes/IWebhook.ts @@ -6,8 +6,8 @@ export interface IWebhook extends IAbstract { projectId: number userId: number secret: string - basicauthuser: string - basicauthpassword: string + basicAuthUser: string + basicAuthPassword: string targetUrl: string events: string[] createdBy: IUser diff --git a/frontend/src/models/webhook.ts b/frontend/src/models/webhook.ts index e86c7bdec..a3937a1e6 100644 --- a/frontend/src/models/webhook.ts +++ b/frontend/src/models/webhook.ts @@ -7,8 +7,8 @@ export default class WebhookModel extends AbstractModel implements IWe projectId = 0 userId = 0 secret = '' - basicauthuser = '' - basicauthpassword = '' + basicAuthUser = '' + basicAuthPassword = '' targetUrl = '' events = [] createdBy = null