forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
3cdb320488
commit
04285c9498
2 changed files with 3 additions and 1 deletions
|
@ -137,6 +137,7 @@
|
||||||
"js-yaml": "3.11.0",
|
"js-yaml": "3.11.0",
|
||||||
"jsdom": "11.7.0",
|
"jsdom": "11.7.0",
|
||||||
"koa": "2.5.0",
|
"koa": "2.5.0",
|
||||||
|
"koa-body": "^2.5.0",
|
||||||
"koa-bodyparser": "4.2.0",
|
"koa-bodyparser": "4.2.0",
|
||||||
"koa-compress": "^2.0.0",
|
"koa-compress": "^2.0.0",
|
||||||
"koa-favicon": "2.0.1",
|
"koa-favicon": "2.0.1",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import * as Router from 'koa-router';
|
import * as Router from 'koa-router';
|
||||||
|
const koaBody = require('koa-body');
|
||||||
const parseRequest = require('http-signature');
|
const parseRequest = require('http-signature');
|
||||||
|
|
||||||
import { createHttp } from '../queue';
|
import { createHttp } from '../queue';
|
||||||
|
@ -18,7 +19,7 @@ const router = new Router();
|
||||||
//#region Routing
|
//#region Routing
|
||||||
|
|
||||||
// inbox
|
// inbox
|
||||||
router.post('/users/:user/inbox', ctx => {
|
router.post('/users/:user/inbox', koaBody(), ctx => {
|
||||||
let signature;
|
let signature;
|
||||||
|
|
||||||
ctx.req.headers.authorization = 'Signature ' + ctx.req.headers.signature;
|
ctx.req.headers.authorization = 'Signature ' + ctx.req.headers.signature;
|
||||||
|
|
Loading…
Reference in a new issue