osem-fcy/app/controllers/admin/comments_controller.rb

9 lines
177 B
Ruby

module Admin
class CommentsController < Admin::BaseController
load_and_authorize_resource
def index
@ordered_events = Event.order(:title).all
end
end
end