2021-12-09 18:22:35 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
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,
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
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,
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2019-02-06 13:56:48 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2021-12-09 18:22:35 +02:00
|
|
|
createExportFollowingJob(user, ps.excludeMuting, ps.excludeInactive);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|