Files
talk/plugins/talk-plugin-global-switchoff/server/resolvers.js
T
Fabian Neumann b73620bcb0 WIP
2018-05-11 11:19:09 +02:00

11 lines
260 B
JavaScript

const { get } = require('lodash');
module.exports = {
Settings: {
globalSwitchoffEnable: settings =>
get(settings, 'globalSwitchoffEnable', false),
globalSwitchoffMessage: settings =>
get(settings, 'globalSwitchoffMessage', ''),
},
};