mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
11 lines
169 B
Ruby
11 lines
169 B
Ruby
class AboutController < ApplicationController
|
|
def staff
|
|
end
|
|
|
|
def adminpanel
|
|
raise AccessError unless cuser and @cuser.admin?
|
|
end
|
|
|
|
def statistics
|
|
end
|
|
end
|