ensl.org/app/controllers/about_controller.rb

12 lines
169 B
Ruby
Raw Normal View History

class AboutController < ApplicationController
def staff
end
def adminpanel
2020-03-15 07:53:52 +00:00
raise AccessError unless cuser and @cuser.admin?
end
def statistics
end
end