Fixing typos and bad labelling

One of these days I'll learn how to write software :(
This commit is contained in:
Andrew Hayward 2013-06-17 13:20:30 +01:00
Родитель c84e26cb33
Коммит 75c6e6fd84
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -79,7 +79,7 @@ module.exports = function (app) {
return activityPage(req, res, next,
req.params.learnerName,
req.params.dependants,
{badge: true, applications: true}
{badges: true, applications: true}
);
});
@ -269,7 +269,7 @@ module.exports = function (app) {
});
});
app.post('/dashboard/:learnerName/applications/:applicationId', [isGuardian], function (req, res, next) {
app.post('/dashboard/:learnerName/applications/:badgeId', [isGuardian], function (req, res, next) {
var learnerName = req.params.learnerName,
badgeId = req.params.badgeId,
action = req.body.action,