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)
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import { IPersonalAPIToken } from './personalAPIToken';
|
|
import { IUser } from './user';
|
|
|
|
export interface IServiceAccount extends IUser {
|
|
tokens: IPersonalAPIToken[];
|
|
}
|