Skip to content

Commit

Permalink
Save the DB
Browse files Browse the repository at this point in the history
  • Loading branch information
boomzero committed Aug 11, 2024
1 parent a41f556 commit 271ec45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,7 @@ export class Process {
return new Result(true, "删除回复成功");
},
GetBBSMentionList: async (Data: object): Promise<Result> => {
return new Result(false, "功能暂未开放");
ThrowErrorIfFailed(this.CheckParams(Data, {}));

Check warning on line 742 in Source/Process.ts

View workflow job for this annotation

GitHub Actions / Qodana for JS

Unreachable code

Unreachable code
const ResponseData = {
MentionList: new Array<Object>()
Expand All @@ -761,6 +762,7 @@ export class Process {
return new Result(true, "获得讨论提及列表成功", ResponseData);
},
GetMailMentionList: async (Data: object): Promise<Result> => {
return new Result(false, "功能暂未开放");
ThrowErrorIfFailed(this.CheckParams(Data, {}));

Check warning on line 766 in Source/Process.ts

View workflow job for this annotation

GitHub Actions / Qodana for JS

Unreachable code

Unreachable code
const ResponseData = {
MentionList: new Array<Object>()
Expand Down

0 comments on commit 271ec45

Please sign in to comment.