mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-08 01:15:49 +02:00
https://linear.app/unleash/issue/2-543/show-relevant-information-on-the-service-accounts-table Shows relevant information on the table, like total PATs and the last time a service account was active based on latest seen PAT for that account. Adapts to the latest related PR on enterprise. 
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
export interface IPersonalAPIToken {
|
|
id: string;
|
|
description: string;
|
|
expiresAt: string;
|
|
createdAt: string;
|
|
seenAt: string;
|
|
}
|
|
|
|
export interface INewPersonalAPIToken extends IPersonalAPIToken {
|
|
secret: string;
|
|
}
|