mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
ea83849cd3
Renames `sign-on log` to `login history`.
10 lines
187 B
TypeScript
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;
|
|
}
|