17 lines
272 B
Ruby
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
|