This commit is contained in:
手瓜一十雪
2024-09-16 19:07:05 +08:00
parent 658b1e99cd
commit 69d780d5ca
3 changed files with 6 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
import BaseAction from '../BaseAction';
import { ActionName } from '../types';
export class FetchOtherProfileLike extends BaseAction<{ qq: number }, any> {
actionName = ActionName.FetchOtherProfileLike;
export class FetchUserProfileLike extends BaseAction<{ qq: number }, any> {
actionName = ActionName.FetchUserProfileLike;
async _handle(payload: { qq: number }) {
if (!payload.qq) throw new Error('qq is required');