Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit d102a08

Browse files
committed
member count is from tc
1 parent 96fc103 commit d102a08

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/views/layouts/application.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
<li><a href="http://smartsheet.cloudspokes.com" target="_blank">Smartsheet</a></li>
212212
<li><a href="http://docusign.cloudspokes.com" target="_blank">DocuSign</a></li>
213213
<li><a href="http://financialforce.cloudspokes.com" target="_blank">FinancialForce</a></li>
214-
<li><a href="http://brivolabs.cloudspokes.com" target="_blank">Brivo Labs</a></li>
214+
<li><a href="http://brivolabs.cloudspokes.comgit " target="_blank">Brivo Labs</a></li>
215215
</ul>
216216
</div>
217217

lib/cs_platform.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ def self.stats
44
stats = Rails.cache.fetch('platform_stats', :expires_in => 60.minute) do
55
tc_members = tc_member_count
66
results = HTTParty.get("#{ENV['CS_API_URL']}/stats")['response']
7-
results['members'] = (results['members'].to_i + tc_members).to_s
7+
#results['members'] = (results['members'].to_i + tc_members).to_s
8+
results['members'] = tc_members.to_s
89
results
910
end
1011
end

0 commit comments

Comments
 (0)