feat(users): enable preference
This commit is contained in:
parent
087eca407d
commit
7ca5f5753f
3 changed files with 89 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue