This commit is contained in:
手瓜一十雪
2024-04-28 20:36:30 +08:00
parent 08507828e9
commit 3cdeeae25b
2 changed files with 3 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
import { WebApi } from '@/core/apis/webapi';
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
@@ -10,7 +11,7 @@ export class SetGroupNotice extends BaseAction<PayloadType, null> {
protected async _handle(payload: PayloadType) {
const group = payload.group_id.toString();
// WebApi.getGrouptNotice(group);
WebApi.setGroupNotice(group);
return null;
}
}