diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-01 23:32:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-01 23:32:46 +0900 |
| commit | 13c2de67a4e5aedc9e70726752c15ff232b7c9fd (patch) | |
| tree | 3da38725843c01e0dddf9a044e8017018b735325 /src/processor/http/index.ts | |
| parent | Add missing semicolon (diff) | |
| parent | Implement remote follow (diff) | |
| download | sharkey-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.ts | 2 |
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, }; |