diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-04-01 16:46:33 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-04-01 16:46:33 +0900 |
| commit | d36f5376e38f30fe12fd3459aa833def230e5302 (patch) | |
| tree | d63bc0c3d327d86dbe363293cd811c0ca56ce45f /src/server/activitypub | |
| parent | Use dot notation (diff) | |
| download | sharkey-d36f5376e38f30fe12fd3459aa833def230e5302.tar.gz sharkey-d36f5376e38f30fe12fd3459aa833def230e5302.tar.bz2 sharkey-d36f5376e38f30fe12fd3459aa833def230e5302.zip | |
Fix
Diffstat (limited to 'src/server/activitypub')
| -rw-r--r-- | src/server/activitypub/inbox.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/activitypub/inbox.ts b/src/server/activitypub/inbox.ts index f76e750d22..b4761d9972 100644 --- a/src/server/activitypub/inbox.ts +++ b/src/server/activitypub/inbox.ts @@ -8,7 +8,7 @@ const app = express(); app.disable('x-powered-by'); app.use(bodyParser.json()); -app.get('/@:user/inbox', async (req, res) => { +app.post('/@:user/inbox', async (req, res) => { let parsed; try { |