mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
a43542b0d1
## About the changes https://linear.app/unleash/issue/2-719/display-basic-sign-on-log-in-frontend Adds a basic, naïve way of displaying sign-on history. We can be OK with merging this for now if we want, given that it's behind a feature flag, and then iterate over it and implement the features and improvements we need in the meantime. ![image](https://user-images.githubusercontent.com/14320932/221217564-90868ce8-6608-4f30-b2e4-88f72f1e4ac6.png) <!-- (For internal contributors): Does it relate to an issue on public roadmap? --> Relates to [roadmap](https://github.com/orgs/Unleash/projects/10) item: #2951
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
export interface ISignOnEvent {
|
|
id: number;
|
|
username: string;
|
|
auth_type: string;
|
|
created_at: Date;
|
|
successful: boolean;
|
|
ip?: string;
|
|
failure_reason?: string;
|
|
}
|