mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:33:09 +02:00
16 lines
335 B
TypeScript
16 lines
335 B
TypeScript
import define from '../../define';
|
|
import { createExportBlockingJob } from '../../../../queue';
|
|
import ms = require('ms');
|
|
|
|
export const meta = {
|
|
secure: true,
|
|
requireCredential: true as const,
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 1,
|
|
},
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
createExportBlockingJob(user);
|
|
});
|