Skip to content

Commit

Permalink
introducing this year's gdcr
Browse files Browse the repository at this point in the history
  • Loading branch information
leider committed Aug 23, 2016
1 parent b731aee commit 7b16bd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion softwerkskammer/lib/activities/index.js
Expand Up @@ -98,10 +98,14 @@ app.get('/gdcr2014', function (req, res, next) {
return renderGdcrFor(moment('2014-11-15', 'YYYY-MM-DD'), res, next);
});

app.get('/gdcr', function (req, res, next) {
app.get('/gdcr2015', function (req, res, next) {
return renderGdcrFor(moment('2015-11-14', 'YYYY-MM-DD'), res, next);
});

app.get('/gdcr', function (req, res, next) {
return renderGdcrFor(moment('2016-10-22', 'YYYY-MM-DD'), res, next);
});

app.get('/upcoming', function (req, res, next) {
activitiesForDisplay(activitystore.upcomingActivities, next, res, req.i18n.t('activities.upcoming'));
});
Expand Down

0 comments on commit 7b16bd6

Please sign in to comment.