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