Method: Cms::PagesController#new
- Defined in:
- app/controllers/cms/pages_controller.rb
#new ⇒ Object
13 14 15 16 17 18 19 |
# File 'app/controllers/cms/pages_controller.rb', line 13 def new @page = Page.new(:section => @section, :cacheable => true) if @section.child_nodes.count < 1 @page.name = "Overview" @page.path = @section.path end end |