From 6a637dfe83284d39973e02d97e4393a07026c980 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Tue, 28 Jun 2016 09:53:44 -0500 Subject: [PATCH] signup: also send total users to countinual now that they're being tracked --- app/controllers/signup_controller.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/controllers/signup_controller.rb b/app/controllers/signup_controller.rb index 563ec4b..3c53060 100644 --- a/app/controllers/signup_controller.rb +++ b/app/controllers/signup_controller.rb @@ -51,6 +51,8 @@ class SignupController < ApplicationController "#{@new_user.username}!" Countinual.count!("#{Rails.application.shortname}.users.created", "+1") + Countinual.count!("#{Rails.application.shortname}.users.total", + User.count) return redirect_to "/signup/invite" else