2018-02-22 19:06:35 +02:00
|
|
|
import $ from 'cafy';
|
2018-11-02 06:47:44 +02:00
|
|
|
import User from '../../../../models/user';
|
2019-02-05 07:14:23 +02:00
|
|
|
import { publishMainStream } from '../../../../services/stream';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2018-02-22 19:06:35 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: true,
|
2018-11-02 05:49:08 +02:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
name: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
|
|
|
value: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.nullable.any
|
2018-11-02 05:49:08 +02:00
|
|
|
}
|
|
|
|
}
|
2018-07-16 22:36:44 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-06-18 03:54:53 +03:00
|
|
|
const x: any = {};
|
2018-11-03 20:33:37 +02:00
|
|
|
x[`clientSettings.${ps.name}`] = ps.value;
|
2018-02-22 19:06:35 +02:00
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: x
|
|
|
|
});
|
|
|
|
|
2018-04-29 11:17:15 +03:00
|
|
|
// Publish event
|
2018-10-07 05:06:17 +03:00
|
|
|
publishMainStream(user._id, 'clientSettingUpdated', {
|
2018-11-03 20:33:37 +02:00
|
|
|
key: ps.name,
|
2018-11-02 05:49:08 +02:00
|
|
|
value: ps.value
|
2018-04-29 11:17:15 +03:00
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
});
|