forked from FoundKeyGang/FoundKey
Merge pull request #1735 from rinsuki/fix/minor-fix-201806171721
minor fix
This commit is contained in:
commit
cbddaf1d19
1 changed files with 1 additions and 2 deletions
|
@ -1,5 +1,4 @@
|
|||
import * as mongo from 'mongodb';
|
||||
import * as Koa from 'koa';
|
||||
import * as Router from 'koa-router';
|
||||
const json = require('koa-json-body');
|
||||
const httpSignature = require('http-signature');
|
||||
|
@ -20,7 +19,7 @@ const router = new Router();
|
|||
|
||||
//#region Routing
|
||||
|
||||
function inbox(ctx: Koa.Context) {
|
||||
function inbox(ctx: Router.IRouterContext) {
|
||||
let signature;
|
||||
|
||||
ctx.req.headers.authorization = 'Signature ' + ctx.req.headers.signature;
|
||||
|
|
Loading…
Reference in a new issue