Adding TenantPropertyService screen

This commit is contained in:
2023-11-06 23:44:46 -06:00
parent 8c7658e090
commit aa738e1e66
16 changed files with 1343 additions and 152 deletions

View File

@@ -28,7 +28,7 @@ export function getTenantProperty(key, props) {
var authKey = getAuthKeyFromProperties(props);
console.log(`Fetching TPS Property [${key}]`);
fetch(`${apiBaseUrl}/tps?propertyName=${key}&authKey=${authKey}`, {
fetch(`${apiBaseUrl}/tps/${key}?authKey=${authKey}`, {
credentials: "include", // fetch won't send cookies unless you set credentials
})
.then((response) => {