Skip to content

Commit 54a558d

Browse files
committed
feat(server): add UserConfigUpload endpoint
1 parent 023f534 commit 54a558d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/server/UserApi.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {HttpClient} from "@/server/Client";
22

3-
import {SSHKeyCreateParma, TokenCreate, TokenDelete} from "@/server/types";
3+
import {SSHKeyCreateParma, TokenCreate, TokenDelete, UserConfigUploadParam} from "@/server/types";
44

55
export class UserApi extends HttpClient {
66
async GetNow() {
@@ -54,4 +54,7 @@ export class UserApi extends HttpClient {
5454
async SSHList() {
5555
return await this.patch<string>('/user/ssh', {});
5656
}
57+
async UploadConfig(param:UserConfigUploadParam) {
58+
return await this.post<string>('/user/config', param);
59+
}
5760
}

0 commit comments

Comments
 (0)