mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
997dbbbea5
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. ![image](https://user-images.githubusercontent.com/14320932/211312719-c4ed940a-723b-4b2e-a79e-8e7cdbda7c58.png)
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;
|
|
}
|