Skip to content

Commit

Permalink
removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Wohlert committed Apr 29, 2016
1 parent e8a07ac commit e65e007
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/server/controller/api/cis/cisApiController.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ module.exports = (() => {
function speiseplan(request, response) {
let url = 'https://cis.nordakademie.de/service/tp-mensa/speiseplan.cmd';
if (request.query.week !== undefined && request.query.year !== undefined) {
console.log(request.query.week);
console.log(request.query.year);
url= url + '?date=' + moment(''.concat(request.query.year, '-W', request.query.week, '-6')).unix() + '999&action=show';
} else if (request.query.date !== undefined) {
url= url + '?date=' + request.query.date + '999&action=show';
Expand Down

0 comments on commit e65e007

Please sign in to comment.