1
0
Fork 0
mirror of synced 2024-07-03 13:30:46 +12:00

Default public config.config when missing

This commit is contained in:
Rory Powell 2021-07-15 16:50:57 +01:00
parent 833e3cb3bf
commit 25fdde6d21

View file

@ -125,7 +125,7 @@ exports.publicOidc = async function (ctx) {
exports.publicSettings = async function (ctx) { exports.publicSettings = async function (ctx) {
const db = new CouchDB(GLOBAL_DB) const db = new CouchDB(GLOBAL_DB)
let config = {}
try { try {
// Find the config with the most granular scope based on context // Find the config with the most granular scope based on context
const publicConfig = await getScopedFullConfig(db, { const publicConfig = await getScopedFullConfig(db, {
@ -140,20 +140,19 @@ exports.publicSettings = async function (ctx) {
type: Configs.OIDC, type: Configs.OIDC,
}) })
// Slightly complex logic here to deal with the fact that let config = {}
// oidc / google might be enabled but org name etc (publicConfig) might not if (!publicConfig) {
if (publicConfig && !!googleConfig && !!oidcConfig) { config = {
ctx.body = publicConfig config: {},
} else if (!publicConfig && !!googleConfig && !!oidcConfig) {
ctx.body = {}
} else {
if (publicConfig) {
config.config = publicConfig.config
} }
config.config.oidc = !!oidcConfig } else {
config.config.google = !!googleConfig config = publicConfig
ctx.body = config
} }
config.config.oidc = !!oidcConfig
config.config.google = !!googleConfig
ctx.body = config
} catch (err) { } catch (err) {
ctx.throw(err.status, err) ctx.throw(err.status, err)
} }