engine/app/controllers/locomotive/api/pages_controller.rb

26 lines
591 B
Ruby
Raw Normal View History

module Locomotive
module Api
class PagesController < BaseController
def index
2012-05-26 13:21:47 +00:00
@pages = current_site.pages.order([:depth, :asc], [:position, :asc])
respond_with(@pages)
end
def create
@page = current_site.pages.create(params[:page])
respond_with @page, :location => main_app.locomotive_api_pages_url
end
def update
@page = current_site.pages.find(params[:id])
@page.update_attributes(params[:page])
respond_with @page, :location => main_app.locomotive_api_pages_url
end
end
end
end