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

29 lines
605 B
TypeScript
Raw Normal View History

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