Skip to content
Snippets Groups Projects
Commit f44214b6 authored by OZGCloud's avatar OZGCloud
Browse files

Merge remote-tracking branch 'origin/master' into OZG-5012-GenerischerResourceService

parents 706163fe 14c81925
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ import {
import { Resource } from '@ngxp/rest';
import { SettingListLinkRel } from './admin-settings.linkrel';
import { SettingItemResource, SettingListResource } from './admin-settings.model';
import { ConfigurationLinkRel } from './configuration/configuration.linkrel';
import { ConfigurationResource } from './configuration/configuration.model';
import { ConfigurationService } from './configuration/configuration.service';
......@@ -27,6 +28,7 @@ function buildConfig(
return {
baseResource: configurationService.get(),
createLinkRel: SettingListLinkRel.CREATE,
listLinkRel: SettingListLinkRel.LIST,
listLinkRel: ConfigurationLinkRel.SETTING,
listResourceListLinkRel: SettingListLinkRel.LIST,
};
}
......@@ -135,7 +135,7 @@ export function convertToBoolean(booleanStr: string): boolean {
try {
return JSON.parse(booleanStr.toLowerCase());
} catch (e: unknown) {
console.warn('Error parsing ' + booleanStr + ' to boolean value.', e);
console.debug('Error parsing ' + booleanStr + ' to boolean value.', e);
return undefined;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment