mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 15:13:09 +02:00
1c67c26bd8
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
42 lines
982 B
TypeScript
42 lines
982 B
TypeScript
import define from '../../define.js';
|
|
import { Users } from '@/models/index.js';
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
import { publishInternalEvent } from '@/services/stream.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const user = await Users.findOneBy({ id: ps.userId });
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
if (user.isAdmin) {
|
|
throw new Error('cannot silence admin');
|
|
}
|
|
|
|
await Users.update(user.id, {
|
|
isSilenced: true,
|
|
});
|
|
|
|
publishInternalEvent('userChangeSilencedState', { id: user.id, isSilenced: true });
|
|
|
|
insertModerationLog(me, 'silence', {
|
|
targetId: user.id,
|
|
});
|
|
});
|