fix(backend): 招待コードが使い回せる問題を修正 (#12423)

* (fix) 招待コードを一度のみ利用できるように

* Update Changelog
This commit is contained in:
かっこかり 2023-11-23 19:34:14 +09:00 committed by GitHub
parent 864827f788
commit 4a2a44831b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -27,6 +27,7 @@
- Fix: 時間経過により無効化されたアンテナを再有効化したとき、サーバ再起動までその状況が反映されないのを修正 #12303
- Fix: ロールタイムラインが保存されない問題を修正
- Fix: api.jsonの生成ロジックを改善 #12402
- Fix: 招待コードが使い回せる問題を修正
## 2023.11.1

View file

@ -126,7 +126,7 @@ export class SignupApiService {
code: invitationCode,
});
if (ticket == null) {
if (ticket == null || ticket.usedById != null) {
reply.code(400);
return;
}