Sharkey/packages/backend/src/server/api/endpoints/i/export-following.ts

29 lines
605 B
TypeScript
Raw Normal View History

2021-12-09 18:22:35 +02:00
import $ from 'cafy';
import define from '../../define';
import { createExportFollowingJob } from '@/queue/index';
2021-11-12 12:47:04 +02:00
import ms from 'ms';
2019-02-06 13:56:48 +02:00
export const meta = {
secure: true,
2020-02-15 14:33:32 +02:00
requireCredential: true as const,
2019-02-06 13:56:48 +02:00
limit: {
duration: ms('1hour'),
max: 1,
},
2021-12-09 18:22:35 +02:00
params: {
excludeMuting: {
validator: $.optional.bool,
default: false,
},
excludeInactive: {
validator: $.optional.bool,
default: false,
},
},
2019-02-06 13:56:48 +02:00
};
2022-01-02 19:12:50 +02:00
// eslint-disable-next-line import/no-default-export
export default define(meta, async (ps, user) => {
2021-12-09 18:22:35 +02:00
createExportFollowingJob(user, ps.excludeMuting, ps.excludeInactive);
});