mirror of https://github.com/requarks/wiki
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.
25 lines
513 B
25 lines
513 B
7 years ago
|
|
||
7 years ago
|
/* global WIKI */
|
||
7 years ago
|
|
||
|
const _ = require('lodash')
|
||
|
|
||
|
module.exports = {
|
||
|
Query: {
|
||
|
settings(obj, args, context, info) {
|
||
7 years ago
|
return WIKI.db.Setting.findAll({ where: args, raw: true }).then(entries => {
|
||
7 years ago
|
return _.map(entries, entry => {
|
||
|
entry.config = JSON.stringify(entry.config)
|
||
|
return entry
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
Mutation: {
|
||
|
setConfigEntry(obj, args) {
|
||
7 years ago
|
return WIKI.db.Setting.update({
|
||
7 years ago
|
value: args.value
|
||
|
}, { where: { key: args.key } })
|
||
|
}
|
||
|
}
|
||
|
}
|