2013-02-05 14:16:51 -05:00
|
|
|
class Admin::AdminController < ApplicationController
|
|
|
|
|
2018-02-01 15:17:59 +11:00
|
|
|
requires_login
|
|
|
|
before_action :ensure_staff
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def index
|
2017-08-31 12:06:56 +08:00
|
|
|
render body: nil
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|