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

31 lines
789 B
TypeScript
Raw Normal View History

2020-12-16 22:02:43 +00:00
import { DefaultClient, PBResponse, QueryArguments } from "./Client";
export class Provider {
pk: number;
name: string;
authorization_flow: string;
2021-02-06 16:55:41 +00:00
object_type: string;
2021-02-04 08:54:00 +00:00
assigned_application_slug?: string;
assigned_application_name?: string;
verbose_name: string;
verbose_name_plural: string;
constructor() {
throw Error();
}
2021-02-04 08:54:00 +00:00
static get(id: number): Promise<Provider> {
return DefaultClient.fetch<Provider>(["providers", "all", id.toString()]);
}
static list(filter?: QueryArguments): Promise<PBResponse<Provider>> {
return DefaultClient.fetch<PBResponse<Provider>>(["providers", "all"], filter);
}
2021-02-04 08:54:00 +00:00
static adminUrl(rest: string): string {
return `/administration/providers/${rest}`;
}
}