orbit-basic/app/controllers/admin/user_actions_controller.rb

8 lines
200 B
Ruby
Raw Normal View History

2013-05-23 03:55:57 +00:00
class Admin::UserActionsController < OrbitBackendController
2013-05-27 06:33:45 +00:00
layout "new_admin"
before_filter :authenticate_user!
before_filter :is_admin?
2013-05-23 03:55:57 +00:00
def index
@user_actions = UserAction.all
end
end