discourse/app/controllers/admin/admin_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
177 B
Ruby
Raw Normal View History

2019-05-02 02:57:12 -04:00
# frozen_string_literal: true
2013-02-05 14:16:51 -05:00
class Admin::AdminController < ApplicationController
requires_login
before_action :ensure_staff
2013-02-05 14:16:51 -05:00
def index
render body: nil
2013-02-05 14:16:51 -05:00
end
end