add user page

This commit is contained in:
jxxghp
2023-07-09 16:14:15 +08:00
parent 4bcbcdf6d9
commit 20c801a159
4 changed files with 270 additions and 367 deletions

View File

@@ -414,3 +414,15 @@ export interface Context {
// 种子信息
torrent_info: TorrentInfo,
}
// 用户信息
export interface User {
id: number,
name: string,
password: string,
email: string,
is_active: boolean,
is_superuser: boolean,
avatar: string,
};