mirror of
https://github.com/tale/headplane.git
synced 2026-08-31 17:28:14 +00:00
chore: switch to react-router v7
This commit is contained in:
+22
-21
@@ -1,28 +1,29 @@
|
||||
import type { User } from './User'
|
||||
import type { User } from './User';
|
||||
|
||||
export interface Machine {
|
||||
id: string
|
||||
machineKey: string
|
||||
nodeKey: string
|
||||
discoKey: string
|
||||
ipAddresses: string[]
|
||||
name: string
|
||||
id: string;
|
||||
machineKey: string;
|
||||
nodeKey: string;
|
||||
discoKey: string;
|
||||
ipAddresses: string[];
|
||||
name: string;
|
||||
|
||||
user: User
|
||||
lastSeen: string
|
||||
expiry: string
|
||||
user: User;
|
||||
lastSeen: string;
|
||||
expiry: string;
|
||||
|
||||
preAuthKey?: unknown // TODO
|
||||
preAuthKey?: unknown; // TODO
|
||||
|
||||
createdAt: string
|
||||
registerMethod: 'REGISTER_METHOD_UNSPECIFIED'
|
||||
| 'REGISTER_METHOD_AUTH_KEY'
|
||||
| 'REGISTER_METHOD_CLI'
|
||||
| 'REGISTER_METHOD_OIDC'
|
||||
createdAt: string;
|
||||
registerMethod:
|
||||
| 'REGISTER_METHOD_UNSPECIFIED'
|
||||
| 'REGISTER_METHOD_AUTH_KEY'
|
||||
| 'REGISTER_METHOD_CLI'
|
||||
| 'REGISTER_METHOD_OIDC';
|
||||
|
||||
forcedTags: string[]
|
||||
invalidTags: string[]
|
||||
validTags: string[]
|
||||
givenName: string
|
||||
online: boolean
|
||||
forcedTags: string[];
|
||||
invalidTags: string[];
|
||||
validTags: string[];
|
||||
givenName: string;
|
||||
online: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user