94a5ff8a4a
We'll use it as cache in the future. /!\ You'll loose your old jobs (pending jobs too) so upgrade only when you don't have pending job anymore.
14 lines
329 B
TypeScript
14 lines
329 B
TypeScript
import { ActorModel } from '../../models/activitypub/actor'
|
|
import { JobQueue } from '../job-queue'
|
|
|
|
async function addFetchOutboxJob (actor: ActorModel) {
|
|
const payload = {
|
|
uris: [ actor.outboxUrl ]
|
|
}
|
|
|
|
return JobQueue.Instance.createJob({ type: 'activitypub-http-fetcher', payload })
|
|
}
|
|
|
|
export {
|
|
addFetchOutboxJob
|
|
}
|