summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/admin/update-meta.ts
blob: 2c7929fabe524305c75e057408e89c7328ae6e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import $ from 'cafy';
import Meta from '../../../../models/meta';
import getParams from '../../get-params';

export const meta = {
	desc: {
		'ja-JP': 'インスタンスの設定を更新します。'
	},

	requireCredential: true,
	requireAdmin: true,

	params: {
		disableRegistration: $.bool.optional.nullable.note({
			desc: {
				'ja-JP': '招待制か否か'
			}
		}),
	}
};

export default (params: any) => new Promise(async (res, rej) => {
	const [ps, psErr] = getParams(meta, params);
	if (psErr) return rej(psErr);

	const set = {} as any;

	if (ps.disableRegistration === true || ps.disableRegistration === false) {
		set.disableRegistration = ps.disableRegistration;
	}

	await Meta.update({}, {
		$set: set
	}, { upsert: true });

	res();
});