| 4 | import { apiGet, apiPost, http } from './request'; |
| 5 | |
| 6 | export interface AdminUser { |
| 7 | mail: string; |
| 8 | flag: string; |
| 9 | is_admin: number; |
| 10 | quota: number; |
| 11 | time: number | null; |
| 12 | keys_configured: boolean; |
| 13 | apis_configured: boolean; |
| 14 | active_certs: number; |
| 15 | month_applies: number; |
| 16 | } |
| 17 | |
| 18 | export interface AdminUserListResp { |
| 19 | flags: number; |
nothing calls this directly
no outgoing calls
no test coverage detected