fix(backend): 7日経過して無効化されたアンテナを再度有効化する方法がない問題を修正

Fix #10476
This commit is contained in:
syuilo 2023-06-02 15:18:34 +09:00
parent 482b00df77
commit 5230ec883e
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@
### Server
- bullをbull-mqにアップグレードし、ジョブキューのパフォーマンスを改善
- ストリーミングのパフォーマンスを改善
- Fix: 無効化されたアンテナにアクセスがあった際に再度有効化するように
- Fix: お知らせの画像URLを空にできない問題を修正
- Fix: i/notificationsのsinceIdが機能しない問題を修正

View File

@ -113,6 +113,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}
this.antennasRepository.update(antenna.id, {
isActive: true,
lastUsedAt: new Date(),
});