feat(config): remove key cloak config functions

This commit is contained in:
ItzCrazyKns
2025-03-01 22:13:38 +05:30
parent 32fb6ac131
commit 07776d8699

View File

@ -119,12 +119,6 @@ export const getCustomOpenaiApiUrl = () =>
export const getCustomOpenaiModelName = () =>
loadConfig().MODELS.CUSTOM_OPENAI.MODEL_NAME;
export const getKeyCloakUrl = () => loadConfig().KEYCLOAK.URL;
export const getKeyCloakRealm = () => loadConfig().KEYCLOAK.REALM;
export const getKeyCloakClientId = () => loadConfig().KEYCLOAK.CLIENT_ID;
const mergeConfigs = (current: any, update: any): any => {
if (update === null || update === undefined) {
return current;