Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
elie committed Jun 11, 2019
1 parent 96bc930 commit 0d613d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ app.use(bodyParserHandler); // error handling specific to body parser only
app.use(cors());

app.post('/signup', userHandler.createUser);
app.post('/login', loginHandler);
app.post('/login', loginHandler)
app.use('/stories', storiesRouter);
app.use('/users', usersRouter);
app.get('*', fourOhFourHandler); // catch-all for 404 "Not Found" errors
Expand Down

0 comments on commit 0d613d1

Please sign in to comment.