This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/app/controllers/admin/admin_controller.rb
2015-04-15 14:54:37 -04:00

10 lines
167 B
Ruby

class Admin::AdminController < ApplicationController
before_filter :ensure_logged_in
before_filter :ensure_staff
def index
render nothing: true
end
end