Compare commits

...

2 Commits

Author SHA1 Message Date
syuilo b02f724475
Update CHANGELOG.md 2023-11-08 21:11:30 +09:00
zyoshoka 2834e54e78
fix(backend): make token nullable (#12280) 2023-11-08 21:10:41 +09:00
2 changed files with 12 additions and 1 deletions

View File

@ -12,6 +12,17 @@
-->
## 2023.x.x (unreleased)
### General
-
### Client
-
### Server
- Fix: トークンのないプラグインをアンインストールするときにエラーが出ないように
## 2023.11.0
### Note

View File

@ -18,7 +18,7 @@ export const paramDef = {
type: 'object',
properties: {
tokenId: { type: 'string', format: 'misskey:id' },
token: { type: 'string' },
token: { type: 'string', nullable: true },
},
anyOf: [
{ required: ['tokenId'] },