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

29 lines
605 B
TypeScript
Raw Normal View History

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