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

16 lines
236 B
TypeScript
Raw Normal View History

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