Initial impl of myapplications.

This commit is contained in:
Ian Dees 2013-06-02 19:10:26 +00:00
Родитель 460933d499
Коммит d1ecbe6edc
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -92,6 +92,17 @@ module.exports = function (app) {
});
});
app.get('/myapplications', [
loggedIn,
openbadger.middleware('getUserBadge')
], function (req, res, next) {
var data = req.remote;
res.render('user/backpack.html', {
items: data.badges
});
});
app.get('/favorites/:view?', function (req, res, next) {
var badge = {
thumbnail: '/media/images/badge.png',