From 271ec45fa6ce8fa5937e7b2d5157ecc7c81dc807 Mon Sep 17 00:00:00 2001 From: boomzero Date: Sun, 11 Aug 2024 21:12:07 +0800 Subject: [PATCH] Save the DB --- Source/Process.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Process.ts b/Source/Process.ts index 9a15b8b..8ae2f7e 100644 --- a/Source/Process.ts +++ b/Source/Process.ts @@ -738,6 +738,7 @@ export class Process { return new Result(true, "删除回复成功"); }, GetBBSMentionList: async (Data: object): Promise => { + return new Result(false, "功能暂未开放"); ThrowErrorIfFailed(this.CheckParams(Data, {})); const ResponseData = { MentionList: new Array() @@ -761,6 +762,7 @@ export class Process { return new Result(true, "获得讨论提及列表成功", ResponseData); }, GetMailMentionList: async (Data: object): Promise => { + return new Result(false, "功能暂未开放"); ThrowErrorIfFailed(this.CheckParams(Data, {})); const ResponseData = { MentionList: new Array()