Update AB test timestamp

This commit is contained in:
Shane Kilkelly 2016-10-26 14:24:00 +01:00
parent d912c3b487
commit dfd13e0815
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ module.exports = SubscriptionController =
baseUrl: baseUrl
gaExperiments: Settings.gaExperiments.plansPage
recomendedCurrency:recomendedCurrency
shouldABTestPlans: currentUser == null or (currentUser?.signUpDate? and currentUser.signUpDate >= (new Date('2011-10-18')))
shouldABTestPlans: currentUser == null or (currentUser?.signUpDate? and currentUser.signUpDate >= (new Date('2016-10-26')))
user_id = AuthenticationController.getLoggedInUserId(req)
if user_id?
UserGetter.getUser user_id, {signUpDate: 1}, (err, user) ->

View file

@ -69,7 +69,7 @@ define [
$scope.shouldABTestPlans = false
if $scope.user.signUpDate >= '2011-10-18'
if $scope.user.signUpDate >= '2016-10-26'
$scope.shouldABTestPlans = true
$scope.settings = window.userSettings