mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 08:32:26 +08:00
17 lines
286 B
Ruby
17 lines
286 B
Ruby
class Admin::AdminController < ApplicationController
|
|
|
|
before_filter :ensure_logged_in
|
|
before_filter :ensure_is_admin
|
|
|
|
def index
|
|
render nothing: true
|
|
end
|
|
|
|
protected
|
|
|
|
def ensure_is_admin
|
|
raise Discourse::InvalidAccess.new unless current_user.admin?
|
|
end
|
|
|
|
end
|