mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-24 01:18:01 +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. 
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[];
|
|
}
|