2021-12-10 01:22:35 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
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
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2021-12-10 01:22:35 +09:00
|
|
|
createExportFollowingJob(user, ps.excludeMuting, ps.excludeInactive);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|