mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:53:08 +02:00
28 lines
605 B
TypeScript
28 lines
605 B
TypeScript
import $ from 'cafy';
|
|
import define from '../../define';
|
|
import { createExportFollowingJob } from '@/queue/index';
|
|
import ms from 'ms';
|
|
|
|
export const meta = {
|
|
secure: true,
|
|
requireCredential: true as const,
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 1,
|
|
},
|
|
params: {
|
|
excludeMuting: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
},
|
|
excludeInactive: {
|
|
validator: $.optional.bool,
|
|
default: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, async (ps, user) => {
|
|
createExportFollowingJob(user, ps.excludeMuting, ps.excludeInactive);
|
|
});
|