Add a trailing comma

This commit is contained in:
Shane Kilkelly 2018-05-25 16:01:37 +01:00
parent c8a8fe6af7
commit bc7d6a64ed

View file

@ -121,7 +121,7 @@ module.exports = class Router
webRouter.get '/user/projects', AuthenticationController.requireLogin(), ProjectController.userProjectsJson
webRouter.get '/project/:Project_id/entities', AuthenticationController.requireLogin(),
AuthorizationMiddlewear.ensureUserCanReadProject
AuthorizationMiddlewear.ensureUserCanReadProject,
ProjectController.projectEntitiesJson
webRouter.get '/project', AuthenticationController.requireLogin(), ProjectController.projectListPage