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/policy_binding.ts

16 lines
268 B
TypeScript
Raw Normal View History

2020-12-01 08:15:41 +00:00
export interface Policy {
pk: string;
name: string;
[key: string]: unknown;
2020-12-01 08:15:41 +00:00
}
export interface PolicyBinding {
pk: string;
policy: string,
policy_obj: Policy;
target: string;
enabled: boolean;
order: number;
timeout: number;
}