Files
codeocean/app/controllers/statistics_controller.rb
2018-03-13 18:38:54 +01:00

17 lines
272 B
Ruby

class StatisticsController < ApplicationController
include StatisticsHelper
def policy_class
StatisticsPolicy
end
def show
authorize self
respond_to do |format|
format.html
format.json { render(json: statistics_data) }
end
end
end