1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/frontend/src/interfaces/loginEvent.ts
Nuno Góis ea83849cd3
refactor: rename sign-on log to login history (#3245)
Renames `sign-on log` to `login history`.
2023-03-02 13:49:50 +00:00

10 lines
187 B
TypeScript

export interface ILoginEvent {
id: number;
username: string;
auth_type: string;
created_at: Date;
successful: boolean;
ip?: string;
failure_reason?: string;
}