mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
const { get } = require('lodash');
|
|
|
|
module.exports = {
|
|
Settings: {
|
|
globalSwitchoffEnable: settings =>
|
|
get(settings, 'globalSwitchoffEnable', false),
|
|
globalSwitchoffMessage: settings =>
|
|
get(settings, 'globalSwitchoffMessage', ''),
|
|
},
|
|
};
|