2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { createExportFollowingJob } from '@/queue/index';
|
2021-08-19 11:33:41 +02:00
|
|
|
import * as 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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-06 12:56:48 +01:00
|
|
|
createExportFollowingJob(user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|