You've already forked AstralRinth
feat: server access post release QA (#6316)
* fix: clicking users in table in app takes you to blank page instead of website * fix: wrong loader icon on server panel * fix: surface var misalignment * fix: password managers still detecting username field as something to autofill * feat: show users on backupitem components * feat: seperators for filter sections * fix: lint + change remove -> revoke * fix: copy * feat: align copy
This commit is contained in:
@@ -858,6 +858,12 @@ export namespace Archon {
|
||||
id: string
|
||||
}
|
||||
|
||||
export type UserInfo = {
|
||||
id: string
|
||||
username: string
|
||||
avatar_url: string | null
|
||||
}
|
||||
|
||||
export type DeleteManyBackupRequest = {
|
||||
backup_ids: string[]
|
||||
}
|
||||
@@ -865,22 +871,26 @@ export namespace Archon {
|
||||
export type ActiveOperation = {
|
||||
backup_id: string
|
||||
operation_type: BackupQueueOperationType
|
||||
operation_id?: number | null
|
||||
operation_id: number | null
|
||||
has_parent: boolean
|
||||
scheduled_for: string
|
||||
started_at: string | null
|
||||
synthetic_legacy: boolean
|
||||
user_info: UserInfo | null
|
||||
}
|
||||
|
||||
export type BackupQueueOperation = {
|
||||
operation_type: BackupQueueOperationType
|
||||
operation_id?: number | null
|
||||
operation_id: number | null
|
||||
state: BackupQueueState
|
||||
scheduled_for: string
|
||||
completed_at?: string | null
|
||||
started_at: string | null
|
||||
completed_at: string | null
|
||||
has_parent: boolean
|
||||
error?: string | null
|
||||
error: string | null
|
||||
should_prompt: boolean
|
||||
synthetic_legacy: boolean
|
||||
user_info: UserInfo | null
|
||||
}
|
||||
|
||||
export type BackupQueueBackup = {
|
||||
|
||||
Reference in New Issue
Block a user