summaryrefslogtreecommitdiff
path: root/src/api/endpoints/i/update_client_setting.ts
diff options
context:
space:
mode:
authorAkihiko Odaki <nekomanma@pixiv.co.jp>2018-03-29 01:20:40 +0900
committerAkihiko Odaki <nekomanma@pixiv.co.jp>2018-03-29 01:54:41 +0900
commit90f8fe7e538bb7e52d2558152a0390e693f39b11 (patch)
tree0f830887053c8f352b1cd0c13ca715fd14c1f030 /src/api/endpoints/i/update_client_setting.ts
parentImplement remote account resolution (diff)
downloadsharkey-90f8fe7e538bb7e52d2558152a0390e693f39b11.tar.gz
sharkey-90f8fe7e538bb7e52d2558152a0390e693f39b11.tar.bz2
sharkey-90f8fe7e538bb7e52d2558152a0390e693f39b11.zip
Introduce processor
Diffstat (limited to 'src/api/endpoints/i/update_client_setting.ts')
-rw-r--r--src/api/endpoints/i/update_client_setting.ts43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/api/endpoints/i/update_client_setting.ts b/src/api/endpoints/i/update_client_setting.ts
deleted file mode 100644
index c772ed5dc3..0000000000
--- a/src/api/endpoints/i/update_client_setting.ts
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- * Module dependencies
- */
-import $ from 'cafy';
-import User, { pack } from '../../models/user';
-import event from '../../event';
-
-/**
- * Update myself
- *
- * @param {any} params
- * @param {any} user
- * @return {Promise<any>}
- */
-module.exports = async (params, user) => new Promise(async (res, rej) => {
- // Get 'name' parameter
- const [name, nameErr] = $(params.name).string().$;
- if (nameErr) return rej('invalid name param');
-
- // Get 'value' parameter
- const [value, valueErr] = $(params.value).nullable.any().$;
- if (valueErr) return rej('invalid value param');
-
- const x = {};
- x[`account.client_settings.${name}`] = value;
-
- await User.update(user._id, {
- $set: x
- });
-
- // Serialize
- user.account.client_settings[name] = value;
- const iObj = await pack(user, user, {
- detail: true,
- includeSecrets: true
- });
-
- // Send response
- res(iObj);
-
- // Publish i updated event
- event(user._id, 'i_updated', iObj);
-});