summaryrefslogtreecommitdiff
path: root/packages/backend/src/boot
diff options
context:
space:
mode:
authorHazelnoot <acomputerdog@gmail.com>2024-12-09 10:00:25 -0500
committerHazelnoot <acomputerdog@gmail.com>2025-02-16 19:25:04 -0500
commitcc2edae7abff566ba968a6027018826099400320 (patch)
tree34b7827841f07af0bad73f394d16cb117bc2401e /packages/backend/src/boot
parentmake `activity_log.duration` nullable (diff)
downloadsharkey-cc2edae7abff566ba968a6027018826099400320.tar.gz
sharkey-cc2edae7abff566ba968a6027018826099400320.tar.bz2
sharkey-cc2edae7abff566ba968a6027018826099400320.zip
rename activity_log and activity_context to ap_inbox_log and ap_context
Diffstat (limited to 'packages/backend/src/boot')
-rw-r--r--packages/backend/src/boot/common.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/backend/src/boot/common.ts b/packages/backend/src/boot/common.ts
index 3584e71153..2f97980e9a 100644
--- a/packages/backend/src/boot/common.ts
+++ b/packages/backend/src/boot/common.ts
@@ -13,7 +13,7 @@ import { ServerStatsService } from '@/daemons/ServerStatsService.js';
import { ServerService } from '@/server/ServerService.js';
import { MainModule } from '@/MainModule.js';
import { envOption } from '@/env.js';
-import { ActivityLogCleanupService } from '@/daemons/ActivityLogCleanupService.js';
+import { ApLogCleanupService } from '@/daemons/ApLogCleanupService.js';
export async function server() {
const app = await NestFactory.createApplicationContext(MainModule, {
@@ -29,7 +29,7 @@ export async function server() {
if (!envOption.noDaemons) {
app.get(QueueStatsService).start();
app.get(ServerStatsService).start();
- app.get(ActivityLogCleanupService).start();
+ app.get(ApLogCleanupService).start();
}
return app;