Skip to content

Commit c72eb43

Browse files
committed
more instructions
1 parent 32fc456 commit c72eb43

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

server/routes/transfers.js

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ router.get('/', function(req, res/*, next*/) {
4040
});
4141
});
4242

43+
//////////////////////////////////////////////////////////////
44+
//// ↓ EXERCISE 5 SOLUTION GOES HERE
45+
//// - Add CSRF protection to this route
46+
//// - Limit this route to only POST requests
4347
router.all('/perform', function(req, res) {
4448
bounceOutIfLoggedOut(req, res, () => {
4549
let { accountFrom, accountTo, amount } = Object.assign(Object.assign({}, req.body), req.query);

0 commit comments

Comments
 (0)