d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
26 lines
634 B
TypeScript
26 lines
634 B
TypeScript
import define from '../../define.js';
|
|
import { createExportFollowingJob } from '@/queue/index.js';
|
|
import ms from 'ms';
|
|
|
|
export const meta = {
|
|
secure: true,
|
|
requireCredential: true,
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 1,
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
excludeMuting: { type: 'boolean', default: false },
|
|
excludeInactive: { type: 'boolean', default: false },
|
|
},
|
|
required: [],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, user) => {
|
|
createExportFollowingJob(user, ps.excludeMuting, ps.excludeInactive);
|
|
});
|