Front references to views as records (#15425)

This commit is contained in:
Paul Rastoin
2025-10-29 12:23:49 +01:00
committed by GitHub
parent eaa82af22f
commit ab24cae2eb
28 changed files with 3 additions and 1739 deletions
@@ -43,10 +43,6 @@ export enum SettingsPath {
NewWebhook = 'api-webhooks/webhooks/new',
WebhookDetail = 'api-webhooks/webhooks/:webhookId',
Integrations = 'integrations',
IntegrationDatabase = 'integrations/:databaseKey',
IntegrationDatabaseConnection = 'integrations/:databaseKey/:connectionId',
IntegrationEditDatabaseConnection = 'integrations/:databaseKey/:connectionId/edit',
IntegrationNewDatabaseConnection = 'integrations/:databaseKey/new',
Security = 'security',
NewSSOIdentityProvider = 'security/sso/new',
@@ -1,4 +1,6 @@
export const parseBooleanFromStringValue = (value: unknown): boolean | unknown => {
export const parseBooleanFromStringValue = (
value: unknown,
): boolean | unknown => {
if (value === 'true') {
return true;
}