Class: Locomotive::Api::PagesController
Instance Method Summary
collapse
#back_to_default_site_locale, #current_content_locale, #localized?, #set_back_office_locale, #set_current_content_locale, #setup_i18n_fallbacks
Instance Method Details
#create ⇒ Object
17
18
19
20
21
22
|
# File 'app/controllers/locomotive/api/pages_controller.rb', line 17
def create
@page = current_site.pages.new
@page.from_presenter(params[:page])
@page.save
respond_with @page, :location => main_app.locomotive_api_pages_url
end
|
#destroy ⇒ Object
31
32
33
34
35
|
# File 'app/controllers/locomotive/api/pages_controller.rb', line 31
def destroy
@page = current_site.pages.find(params[:id])
@page.destroy
respond_with @page
end
|
#index ⇒ Object
7
8
9
10
|
# File 'app/controllers/locomotive/api/pages_controller.rb', line 7
def index
@pages = current_site.pages.order_by([[:depth, :asc], [:position, :asc]])
respond_with(@pages)
end
|
#show ⇒ Object
12
13
14
15
|
# File 'app/controllers/locomotive/api/pages_controller.rb', line 12
def show
@page = current_site.pages.find(params[:id])
respond_with(@page)
end
|
#update ⇒ Object
24
25
26
27
28
29
|
# File 'app/controllers/locomotive/api/pages_controller.rb', line 24
def update
@page = current_site.pages.find(params[:id])
@page.from_presenter(params[:page])
@page.save
respond_with @page, :location => main_app.locomotive_api_pages_url
end
|