Fix: SystemWebhook設定でsecretを空に出来ない問題を修正 (#16371)

* fix(backend): allow system-webhook secret to be empty

* docs(changelog): update changelog

* chore: run build-misskey-js-with-types
This commit is contained in:
Sayamame-beans
2025-08-08 21:35:02 +09:00
committed by GitHub
parent 3da04fcae4
commit 215725a3ac
4 changed files with 7 additions and 6 deletions

View File

@@ -11887,7 +11887,8 @@ export interface operations {
name: string;
on: ('abuseReport' | 'abuseReportResolved' | 'userCreated' | 'inactiveModeratorsWarning' | 'inactiveModeratorsInvitationOnlyChanged')[];
url: string;
secret: string;
/** @default */
secret?: string;
};
};
};
@@ -12231,7 +12232,8 @@ export interface operations {
name: string;
on: ('abuseReport' | 'abuseReportResolved' | 'userCreated' | 'inactiveModeratorsWarning' | 'inactiveModeratorsInvitationOnlyChanged')[];
url: string;
secret: string;
/** @default */
secret?: string;
};
};
};