summaryrefslogtreecommitdiff
path: root/src/api/server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/server.ts')
-rw-r--r--src/api/server.ts11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/api/server.ts b/src/api/server.ts
index 026357b465..e89d196096 100644
--- a/src/api/server.ts
+++ b/src/api/server.ts
@@ -26,9 +26,7 @@ app.use(bodyParser.json({
}
}
}));
-app.use(cors({
- origin: true
-}));
+app.use(cors());
app.get('/', (req, res) => {
res.send('YEE HAW');
@@ -49,13 +47,6 @@ endpoints.forEach(endpoint =>
app.post('/signup', require('./private/signup').default);
app.post('/signin', require('./private/signin').default);
-app.use((req, res, next) => {
- // req.headers['cookie'] は常に string ですが、型定義の都合上
- // string | string[] になっているので string を明示しています
- res.locals.user = ((req.headers['cookie'] as string || '').match(/i=(!\w+)/) || [null, null])[1];
- next();
-});
-
require('./service/github')(app);
require('./service/twitter')(app);