providers: add provider/ prefix for property mappings API (#10874)

This commit is contained in:
Marc 'risson' Schmitt
2024-08-12 15:13:08 +02:00
committed by GitHub
parent dab41fe0b9
commit a7203be850
45 changed files with 284 additions and 196 deletions

View File

@ -9,18 +9,20 @@ import { property, query } from "lit/decorators.js";
import {
PropertymappingsApi,
PropertymappingsSamlListRequest,
PropertymappingsProviderSamlListRequest,
SAMLPropertyMapping,
} from "@goauthentik/api";
async function fetchObjects(query?: string): Promise<SAMLPropertyMapping[]> {
const args: PropertymappingsSamlListRequest = {
const args: PropertymappingsProviderSamlListRequest = {
ordering: "saml_name",
};
if (query !== undefined) {
args.search = query;
}
const items = await new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsSamlList(args);
const items = await new PropertymappingsApi(DEFAULT_CONFIG).propertymappingsProviderSamlList(
args,
);
return items.results;
}