]> git.openstreetmap.org Git - rails.git/blobdiff - script/statistics
Use a param to trigger export rather than a separate action
[rails.git] / script / statistics
index afd5dd7d281c1a7b671cbc49596742e164e7014a..4ceb92cfcc470bf22b74cc25e43c274eda99cfc0 100755 (executable)
@@ -16,7 +16,7 @@ puts "<h2>OpenStreetMap stats report run at #{start_time.to_s}</h2>"
 
 begin
   ActiveRecord::Base.transaction do
-    user_count = User.count(:conditions => "active = 1")
+    user_count = User.count(:conditions => { :status => ["active", "confirmed", "suspended"] })
     tracepoint_count = Tracepoint.count()
     node_count = Node.count(:conditions => "visible = true")
     way_count = Way.count(:conditions => "visible = true")
@@ -102,3 +102,5 @@ end
 puts "<p>Report took #{(Time.new - start_time).to_s} seconds to run</p>"
 puts "</body>"
 puts "</html>"
+
+exit 0