mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 02:10:44 -05:00
Removed duplicate endpoint
This commit is contained in:
parent
4bcbca5b04
commit
4c2a0a675a
@ -238,10 +238,6 @@ export class DialogueCallbacks implements OnUpdate {
|
||||
return this.httpResponse.emptyArrayResponse();
|
||||
}
|
||||
|
||||
public removeMail(url: string, request: IRemoveMailMessageRequest, sessionID: string): IGetBodyResponseData<any[]> {
|
||||
return this.httpResponse.emptyArrayResponse();
|
||||
}
|
||||
|
||||
public createGroupMail(url: string, info: ICreateGroupMailRequest, sessionID: string): IGetBodyResponseData<any[]> {
|
||||
return this.httpResponse.emptyArrayResponse();
|
||||
}
|
||||
|
@ -106,17 +106,6 @@ export class DialogStaticRouter extends StaticRouter {
|
||||
return this.dialogueCallbacks.setRead(url, info, sessionID);
|
||||
},
|
||||
),
|
||||
new RouteAction(
|
||||
"/client/mail/dialog/remove",
|
||||
async (
|
||||
url: string,
|
||||
info: any,
|
||||
sessionID: string,
|
||||
output: string,
|
||||
): Promise<IGetBodyResponseData<any[]>> => {
|
||||
return this.dialogueCallbacks.removeMail(url, info, sessionID);
|
||||
},
|
||||
),
|
||||
new RouteAction(
|
||||
"/client/mail/dialog/getAllAttachments",
|
||||
async (
|
||||
|
Loading…
x
Reference in New Issue
Block a user