Change wording to v1

This commit is contained in:
Alasdair Smith 2017-10-31 09:38:55 +00:00
parent c1b3cc3a69
commit 020e8ab8c4

View file

@ -152,7 +152,7 @@ module.exports = ProjectController =
NotificationsHandler.getUserNotifications user_id, cb
projects: (cb)->
ProjectGetter.findAllUsersProjects user_id, 'name lastUpdated publicAccesLevel archived owner_ref tokens', cb
olProjects: (cb) ->
v1Projects: (cb) ->
if isV1
OlProjectGetter.findAllUsersProjects user_id, cb
else
@ -170,7 +170,7 @@ module.exports = ProjectController =
notifications = require("underscore").map results.notifications, (notification)->
notification.html = req.i18n.translate(notification.templateKey, notification.messageOpts)
return notification
projects = ProjectController._buildProjectList results.projects, results.olProjects?.projects
projects = ProjectController._buildProjectList results.projects, results.v1Projects?.projects
user = results.user
ProjectController._injectProjectOwners projects, (error, projects) ->
return next(error) if error?