feat(TALE-35): implement pre-auth key management
This commit is contained in:
parent
ecef45c98a
commit
aa7e2a3128
11 changed files with 613 additions and 29 deletions
11
app/types/PreAuthKey.ts
Normal file
11
app/types/PreAuthKey.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export interface PreAuthKey {
|
||||
id: string
|
||||
key: string
|
||||
user: string
|
||||
reusable: boolean
|
||||
ephemeral: boolean
|
||||
used: boolean
|
||||
expiration: string
|
||||
createdAt: string
|
||||
aclTags: string[]
|
||||
}
|
||||
|
|
@ -2,3 +2,4 @@ export * from './Key'
|
|||
export * from './Machine'
|
||||
export * from './Route'
|
||||
export * from './User'
|
||||
export * from './PreAuthKey'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue