diff options
Diffstat (limited to 'public/javascripts/schedule.js')
-rw-r--r-- | public/javascripts/schedule.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/public/javascripts/schedule.js b/public/javascripts/schedule.js index a1ca647..73e2a54 100644 --- a/public/javascripts/schedule.js +++ b/public/javascripts/schedule.js @@ -1,3 +1,5 @@ +/* global VALID_WEEK_NUMBERS */ + const EventEmitter = require('events') const leftPad = require('left-pad') const search = require('./search') @@ -55,6 +57,10 @@ self._removeChilds = function () { } self.viewItem = function (week, selectedUser) { + if (VALID_WEEK_NUMBERS.indexOf(week) === -1) { + self._handleError({ target: { status: 404 } }); + return + } const url = self._getURLOfUsers(week, selectedUser.type, selectedUser.index) self._removeChilds() |