fix: admin/update-meta が保存できない (#12057)

* Fix: invalid param impressumUrl

* Update CHANGELOG.md
This commit is contained in:
かっこかり 2023-10-18 09:48:49 +09:00 committed by GitHub
parent 145c5c8b2b
commit 53099cad5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -25,6 +25,7 @@
### Server
- Enhance: ストリーミングAPIのパフォーマンスを向上
- Fix: コントロールパネルの設定項目が正しく保存できない問題を修正
## 2023.10.1
### General

View file

@ -96,8 +96,8 @@ export const paramDef = {
tosUrl: { type: 'string', nullable: true },
repositoryUrl: { type: 'string' },
feedbackUrl: { type: 'string' },
impressumUrl: { type: 'string' },
privacyPolicyUrl: { type: 'string' },
impressumUrl: { type: 'string', nullable: true },
privacyPolicyUrl: { type: 'string', nullable: true },
useObjectStorage: { type: 'boolean' },
objectStorageBaseUrl: { type: 'string', nullable: true },
objectStorageBucket: { type: 'string', nullable: true },