2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { createExportBlockingJob } 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,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-06 12:56:48 +01:00
|
|
|
createExportBlockingJob(user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|