Protect password

This commit is contained in:
Adria Navarro 2025-03-18 09:41:28 +01:00
parent e7805e5222
commit dfdae89133
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import {
OAuth2Config, OAuth2Config,
RequiredKeys, RequiredKeys,
OAuth2ConfigResponse, OAuth2ConfigResponse,
PASSWORD_REPLACEMENT,
} from "@budibase/types" } from "@budibase/types"
import sdk from "../../sdk" import sdk from "../../sdk"
@ -17,7 +18,7 @@ function toFetchOAuth2ConfigsResponse(
name: config.name, name: config.name,
url: config.url, url: config.url,
clientId: config.clientId, clientId: config.clientId,
clientSecret: config.clientSecret, clientSecret: PASSWORD_REPLACEMENT,
} }
} }