d13e86ba46
Rebranded src code and scripts to SPT Co-authored-by: clodan <clodan@clodan.com> Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/345 Co-authored-by: Alex <clodan@noreply.dev.sp-tarkov.com> Co-committed-by: Alex <clodan@noreply.dev.sp-tarkov.com>
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { inject, injectable } from "tsyringe";
|
|
import { NoteController } from "@spt/controllers/NoteController";
|
|
import { IPmcData } from "@spt/models/eft/common/IPmcData";
|
|
import { IItemEventRouterResponse } from "@spt/models/eft/itemEvent/IItemEventRouterResponse";
|
|
import { INoteActionData } from "@spt/models/eft/notes/INoteActionData";
|
|
|
|
@injectable()
|
|
export class NoteCallbacks
|
|
{
|
|
constructor(@inject("NoteController") protected noteController: NoteController)
|
|
{}
|
|
|
|
/** Handle AddNote event */
|
|
public addNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
{
|
|
return this.noteController.addNote(pmcData, body, sessionID);
|
|
}
|
|
|
|
/** Handle EditNote event */
|
|
public editNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
{
|
|
return this.noteController.editNote(pmcData, body, sessionID);
|
|
}
|
|
|
|
/** Handle DeleteNote event */
|
|
public deleteNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse
|
|
{
|
|
return this.noteController.deleteNote(pmcData, body, sessionID);
|
|
}
|
|
}
|