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/Groups.ts
2021-01-14 17:39:59 +01:00

16 lines
236 B
TypeScript

import { EventContext } from "./Events";
export class Group {
group_uuid: string;
name: string;
is_superuser: boolean;
attributes: EventContext;
parent?: Group;
constructor() {
throw Error();
}
}