Commit 4a593a85e68a3e805d62ce9bfaeeee55df4dc613
1 parent
4b9805ae
Les pages d'erreurs ont désormais une fin
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
app/routes/ApiRtes.js
... | ... | @@ -35,7 +35,7 @@ reqVerified = function (verify) { |
35 | 35 | if (verified) { |
36 | 36 | next(); |
37 | 37 | } else { |
38 | - res.status(403); | |
38 | + res.status(403).end(); | |
39 | 39 | } |
40 | 40 | } |
41 | 41 | }); |
... | ... | @@ -59,7 +59,7 @@ assert = function (test) { |
59 | 59 | if (verified) { |
60 | 60 | next(); |
61 | 61 | } else { |
62 | - res.status(400); | |
62 | + res.status(400).end(); | |
63 | 63 | } |
64 | 64 | } |
65 | 65 | }); |
... | ... | @@ -120,7 +120,7 @@ api.get('/membres', function (req, res) { // Liste des membres |
120 | 120 | }); |
121 | 121 | |
122 | 122 | api.post('/membres', assert(function (req, res, cb) { |
123 | - cb(typeof req.body.login == 'string' && req.body.login !== ''); | |
123 | + cb(null, typeof req.body.login == 'string' && req.body.login !== ''); | |
124 | 124 | }), reqPerm('canAddMembre'), function (req, res) { // Ajout d'un membre |
125 | 125 | MembresServ.add(req.body, function (err, membre) { |
126 | 126 | if (err) | ... | ... |