adds admin verification to view stats
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
class StatsController < ApplicationController
|
class StatsController < ApplicationController
|
||||||
|
skip_authorization_check
|
||||||
|
before_action :verify_administrator
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@event_types = Ahoy::Event.select(:name).uniq.pluck(:name)
|
@event_types = Ahoy::Event.select(:name).uniq.pluck(:name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def verify_administrator
|
||||||
|
raise CanCan::AccessDenied unless current_user.try(:administrator?)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user