2023-03-03 15:23:46 +00:00
|
|
|
import { inject, injectable } from "tsyringe";
|
|
|
|
|
2023-10-19 17:21:17 +00:00
|
|
|
import { HandbookController } from "@spt-aki/controllers/HandbookController";
|
|
|
|
import { OnLoad } from "@spt-aki/di/OnLoad";
|
2023-03-03 15:23:46 +00:00
|
|
|
|
|
|
|
@injectable()
|
|
|
|
export class HandbookCallbacks implements OnLoad
|
|
|
|
{
|
|
|
|
constructor(
|
2023-11-10 15:19:56 -05:00
|
|
|
@inject("HandbookController") protected handbookController: HandbookController,
|
2023-03-03 15:23:46 +00:00
|
|
|
)
|
2023-11-10 15:19:56 -05:00
|
|
|
{}
|
|
|
|
|
|
|
|
public async onLoad(): Promise<void>
|
2023-03-03 15:23:46 +00:00
|
|
|
{
|
|
|
|
this.handbookController.load();
|
|
|
|
}
|
2023-11-10 15:19:56 -05:00
|
|
|
|
|
|
|
public getRoute(): string
|
2023-03-03 15:23:46 +00:00
|
|
|
{
|
|
|
|
return "aki-handbook";
|
|
|
|
}
|
2023-11-10 15:19:56 -05:00
|
|
|
}
|