summaryrefslogtreecommitdiff
path: root/src/processor/http/index.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-04-01 23:32:46 +0900
committerGitHub <noreply@github.com>2018-04-01 23:32:46 +0900
commit13c2de67a4e5aedc9e70726752c15ff232b7c9fd (patch)
tree3da38725843c01e0dddf9a044e8017018b735325 /src/processor/http/index.ts
parentAdd missing semicolon (diff)
parentImplement remote follow (diff)
downloadsharkey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.tar.gz
sharkey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.tar.bz2
sharkey-13c2de67a4e5aedc9e70726752c15ff232b7c9fd.zip
Merge pull request #1356 from akihikodaki/publickey
Implement remote follow
Diffstat (limited to 'src/processor/http/index.ts')
-rw-r--r--src/processor/http/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/processor/http/index.ts b/src/processor/http/index.ts
index da942ad2a1..a001cf11f7 100644
--- a/src/processor/http/index.ts
+++ b/src/processor/http/index.ts
@@ -1,7 +1,9 @@
+import follow from './follow';
import performActivityPub from './perform-activitypub';
import reportGitHubFailure from './report-github-failure';
const handlers = {
+ follow,
performActivityPub,
reportGitHubFailure,
};