d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
32 lines
757 B
TypeScript
32 lines
757 B
TypeScript
import define from '../../../define.js';
|
|
import { Instances } from '@/models/index.js';
|
|
import { toPuny } from '@/misc/convert-host.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
host: { type: 'string' },
|
|
isSuspended: { type: 'boolean' },
|
|
},
|
|
required: ['host', 'isSuspended'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const instance = await Instances.findOne({ host: toPuny(ps.host) });
|
|
|
|
if (instance == null) {
|
|
throw new Error('instance not found');
|
|
}
|
|
|
|
Instances.update({ host: toPuny(ps.host) }, {
|
|
isSuspended: ps.isSuspended,
|
|
});
|
|
});
|