mirror of
https://github.com/wassname/talk.git
synced 2026-07-31 12:50:48 +08:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
module.exports = {
|
|
RootMutation: {
|
|
updateSettings: {
|
|
async pre(_, { input }) {
|
|
input.metadata = {
|
|
...input.metadata,
|
|
globalSwitchoffEnable: input.globalSwitchoffEnable,
|
|
};
|
|
delete input.globalSwitchoffEnable;
|
|
},
|
|
},
|
|
},
|
|
};
|