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