engine/app/controllers/admin/layouts_controller.rb

14 lines
219 B
Ruby
Raw Normal View History

module Admin
class LayoutsController < BaseController
sections 'settings'
respond_to :json, :only => :update
def index
@layouts = current_site.layouts.order_by([[:name, :asc]])
end
end
end