Skip to content
Snippets Groups Projects
Commit 5230ec88 authored by syuilo's avatar syuilo
Browse files

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

Fix #10476
parent 482b00df
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@
### Server
- bullをbull-mqにアップグレードし、ジョブキューのパフォーマンスを改善
- ストリーミングのパフォーマンスを改善
- Fix: 無効化されたアンテナにアクセスがあった際に再度有効化するように
- Fix: お知らせの画像URLを空にできない問題を修正
- Fix: i/notificationsのsinceIdが機能しない問題を修正
......
......@@ -113,6 +113,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}
this.antennasRepository.update(antenna.id, {
isActive: true,
lastUsedAt: new Date(),
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment