feat(users): enable preference

This commit is contained in:
hexxa 2021-10-13 18:49:32 +08:00 committed by Hexxa
parent 087eca407d
commit 7ca5f5753f
3 changed files with 89 additions and 6 deletions

View file

@ -14,6 +14,11 @@ export interface Quota {
downloadSpeedLimit: number;
}
export interface Settings {
bgURL: string;
cssURL: string;
lanPackURL: string;
}
export interface User {
id: string;
name: string;
@ -21,6 +26,7 @@ export interface User {
role: string;
quota: Quota;
usedSpace: string;
settings: Settings;
}
export interface ListUsersResp {