mirror of https://github.com/Requarks/wiki.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
521 B
24 lines
521 B
|
|
/* global WIKI */
|
|
|
|
const _ = require('lodash')
|
|
|
|
module.exports = {
|
|
Query: {
|
|
settings(obj, args, context, info) {
|
|
return WIKI.models.Setting.findAll({ where: args, raw: true }).then(entries => {
|
|
return _.map(entries, entry => {
|
|
entry.config = JSON.stringify(entry.config)
|
|
return entry
|
|
})
|
|
})
|
|
}
|
|
},
|
|
Mutation: {
|
|
setConfigEntry(obj, args) {
|
|
return WIKI.models.Setting.update({
|
|
value: args.value
|
|
}, { where: { key: args.key } })
|
|
}
|
|
}
|
|
}
|