This commit is contained in:
2023-08-06 13:54:23 +00:00
parent 69de10642e
commit 31fa264160
+1 -1
View File
@@ -12,7 +12,7 @@ class Q implements QType {
password!: string;
}
export class LoginByID extends POST<RType, EType, QType>{
readonly argValidator = undefined;
readonly argValidator = Q;
protected LoginByID = Symbol("LoginByID");//TODO: remove this
protected override async api(query: QType): Promise<RType | EType | true> {
throw new Error("Method not implemented.");