Skip to content

Commit

Permalink
Removed duplicate endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Chomp committed Feb 1, 2025
1 parent 4bcbca5 commit 4c2a0a6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
4 changes: 0 additions & 4 deletions project/src/callbacks/DialogueCallbacks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
11 changes: 0 additions & 11 deletions project/src/routers/static/DialogStaticRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 4c2a0a6

Please sign in to comment.