| 25 | } |
| 26 | |
| 27 | export interface AdminUserListQuery { |
| 28 | page?: number; |
| 29 | page_size?: number; |
| 30 | mail?: string; |
| 31 | flag?: string; |
| 32 | is_admin?: 0 | 1; |
| 33 | quota_min?: number; |
| 34 | quota_max?: number; |
| 35 | } |
| 36 | |
| 37 | /** 用户列表 */ |
| 38 | export async function listAdminUsers( |
nothing calls this directly
no outgoing calls
no test coverage detected