This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/web/src/api/Events.ts

18 lines
352 B
TypeScript
Raw Normal View History

import { Event } from "./models";
export interface EventUser {
pk: number;
email?: string;
username: string;
on_behalf_of?: EventUser;
}
export interface EventContext {
[key: string]: EventContext | string | number | string[];
}
2020-12-01 21:17:07 +00:00
export interface EventWithContext extends Event {
user: EventUser;
context: EventContext;
2020-12-01 21:17:07 +00:00
}