From e3947f0d11864f40a2c0a202af99e0b14ff14dcf Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Mon, 4 Sep 2017 20:12:23 +0200 Subject: Only show weeks that are available --- public/javascripts/schedule.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'public/javascripts/schedule.js') 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() -- cgit v1.1