1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-23 02:58:22 +09:00
cherrypick/src/queue/processors/http/index.ts

18 lines
454 B
TypeScript
Raw Normal View History

2018-04-02 20:16:13 +09:00
import deliverPost from './deliver-post';
2018-04-01 19:43:26 +09:00
import follow from './follow';
2018-03-31 19:55:00 +09:00
import performActivityPub from './perform-activitypub';
2018-04-02 18:36:47 +09:00
import processInbox from './process-inbox';
2018-03-31 19:55:00 +09:00
import reportGitHubFailure from './report-github-failure';
2018-04-03 17:18:06 +09:00
import unfollow from './unfollow';
2018-03-31 19:55:00 +09:00
const handlers = {
2018-04-02 20:16:13 +09:00
deliverPost,
2018-04-01 19:43:26 +09:00
follow,
2018-03-31 19:55:00 +09:00
performActivityPub,
2018-04-02 18:36:47 +09:00
processInbox,
2018-03-31 19:55:00 +09:00
reportGitHubFailure,
2018-04-03 17:18:06 +09:00
unfollow
2018-03-31 19:55:00 +09:00
};
export default (job, done) => handlers[job.data.type](job, done);