Add live graphs for active users and submission volume

This commit is contained in:
Maximilian Grundke
2018-04-11 13:43:10 +02:00
parent 8cdf909188
commit 2a4e9bc94b
9 changed files with 184 additions and 0 deletions

View File

@ -13,4 +13,12 @@ class StatisticsController < ApplicationController
end
end
def graphs
authorize self
respond_to do |format|
format.html
format.json { render(json: graph_live_data) }
end
end
end