fix: admin - general settings not saving with empty value (#5165)
This commit is contained in:
parent
eeee6c9a98
commit
44b3fd1794
@ -38,7 +38,7 @@ module.exports = {
|
|||||||
SiteMutation: {
|
SiteMutation: {
|
||||||
async updateConfig(obj, args, context) {
|
async updateConfig(obj, args, context) {
|
||||||
try {
|
try {
|
||||||
if (args.host) {
|
if (args.hasOwnProperty('host')) {
|
||||||
let siteHost = _.trim(args.host)
|
let siteHost = _.trim(args.host)
|
||||||
if (siteHost.endsWith('/')) {
|
if (siteHost.endsWith('/')) {
|
||||||
siteHost = siteHost.slice(0, -1)
|
siteHost = siteHost.slice(0, -1)
|
||||||
@ -46,19 +46,19 @@ module.exports = {
|
|||||||
WIKI.config.host = siteHost
|
WIKI.config.host = siteHost
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.title) {
|
if (args.hasOwnProperty('title')) {
|
||||||
WIKI.config.title = _.trim(args.title)
|
WIKI.config.title = _.trim(args.title)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.company) {
|
if (args.hasOwnProperty('company')) {
|
||||||
WIKI.config.company = _.trim(args.company)
|
WIKI.config.company = _.trim(args.company)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.contentLicense) {
|
if (args.hasOwnProperty('contentLicense')) {
|
||||||
WIKI.config.contentLicense = args.contentLicense
|
WIKI.config.contentLicense = args.contentLicense
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.logoUrl) {
|
if (args.hasOwnProperty('logoUrl')) {
|
||||||
WIKI.config.logoUrl = _.trim(args.logoUrl)
|
WIKI.config.logoUrl = _.trim(args.logoUrl)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user