summaryrefslogtreecommitdiff
path: root/src/api/server.ts
diff options
context:
space:
mode:
authorこぴなたみぽ <Syuilotan@yahoo.co.jp>2017-11-06 19:10:10 +0900
committerGitHub <noreply@github.com>2017-11-06 19:10:10 +0900
commit03e86ec05216d49f9a1af5dd92f0fa12f2da4825 (patch)
tree9257b5d2d0abc626187a9ba9640097bc5624d158 /src/api/server.ts
parentchore(package): update @types/serve-favicon to version 2.2.29 (diff)
parentMerge pull request #870 from syuilo/greenkeeper/@types/multer-1.3.5 (diff)
downloadmisskey-03e86ec05216d49f9a1af5dd92f0fa12f2da4825.tar.gz
misskey-03e86ec05216d49f9a1af5dd92f0fa12f2da4825.tar.bz2
misskey-03e86ec05216d49f9a1af5dd92f0fa12f2da4825.zip
Merge branch 'master' into greenkeeper/@types/serve-favicon-2.2.29
Diffstat (limited to 'src/api/server.ts')
-rw-r--r--src/api/server.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/api/server.ts b/src/api/server.ts
index c98167eb3e..3de32d9eab 100644
--- a/src/api/server.ts
+++ b/src/api/server.ts
@@ -19,7 +19,12 @@ app.disable('x-powered-by');
app.set('etag', false);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json({
- type: ['application/json', 'text/plain']
+ type: ['application/json', 'text/plain'],
+ verify: (req, res, buf, encoding) => {
+ if (buf && buf.length) {
+ (req as any).rawBody = buf.toString(encoding || 'utf8');
+ }
+ }
}));
app.use(cors({
origin: true
@@ -54,4 +59,6 @@ app.use((req, res, next) => {
require('./service/github')(app);
require('./service/twitter')(app);
+require('./bot/interfaces/line')(app);
+
module.exports = app;