Allow user to force themselves to be part of autocompile rollout

This commit is contained in:
Alasdair Smith 2017-11-16 15:36:22 +00:00
parent f001c6745e
commit b889a8bb4d

View file

@ -270,6 +270,10 @@ module.exports = ProjectController =
CollaboratorsHandler.userIsTokenMember user_id, project_id, cb
showAutoCompileOnboarding: (cb) ->
cb = underscore.once(cb)
# Force autocompile rollout if query param set
if req.query.ac == 't'
return cb(null, { enabled: true, showOnboarding: true })
if !user_id?
return cb()