1
0
Fork 0
mirror of synced 2024-08-02 11:51:34 +12:00

Display right provisioning url

This commit is contained in:
adrinr 2023-03-21 16:39:50 +00:00
parent 5b98d9cbd9
commit 9094d3c9fd

View file

@ -13,6 +13,7 @@
} from "@budibase/bbui"
import { onMount } from "svelte"
import { API } from "api"
import { organisation } from "stores/portal"
const configType = "scim"
@ -54,7 +55,10 @@
}
const settings = [
{ title: "Provisioning URL", value: "url" },
{
title: "Provisioning URL",
value: `${$organisation.platformUrl}/api/global/scim/v2`,
},
{ title: "Provisioning Token", value: "token" },
]
</script>