feat(backend): Webhook設定でsecretを空に出来るように (#11784)

* feat(backend): allow webhook secret to be empty

* Update CHANGELOG.md
This commit is contained in:
Sayamame-beans
2023-09-06 13:02:33 +09:00
committed by GitHub
parent b0eae49eaa
commit bf303238f0
3 changed files with 5 additions and 4 deletions

View File

@@ -34,13 +34,13 @@ export const paramDef = {
webhookId: { type: 'string', format: 'misskey:id' },
name: { type: 'string', minLength: 1, maxLength: 100 },
url: { type: 'string', minLength: 1, maxLength: 1024 },
secret: { type: 'string', minLength: 1, maxLength: 1024 },
secret: { type: 'string', maxLength: 1024, default: '' },
on: { type: 'array', items: {
type: 'string', enum: webhookEventTypes,
} },
active: { type: 'boolean' },
},
required: ['webhookId', 'name', 'url', 'secret', 'on', 'active'],
required: ['webhookId', 'name', 'url', 'on', 'active'],
} as const;
// TODO: ロジックをサービスに切り出す