app/controllers/pages_controller.rb in cardboard_cms-0.2.2 vs app/controllers/pages_controller.rb in cardboard_cms-0.3.1
- old
+ new
@@ -1,35 +1,3 @@
-class PagesController < ApplicationController
- def show
- if current_page.nil?
- flash[:error] = "No root page! Make sure to add a page first"
- redirect_to cardboard.dashboard_path
- else
- if current_page.using_slug_backup?
- redirect_to current_page.url, status: :moved_permanently
- else
- # call controller hook
- self.send(current_page.identifier) if self.respond_to? current_page.identifier
-
- render "cardboard/pages/show", layout: @layout || "layouts/application"
- end
- end
- end
-
-private
-
- # def edit_link
- # cardboard.edit_page_path(@page)
- # end
- # helper_method :edit_link
-
- def current_page
- return @page unless @page.nil?
- @page = if params[:id].nil?
- Cardboard::Page.root
- else
- Cardboard::Page.find_by_url(params[:id])
- end
- @page || raise(ActionController::RoutingError.new("Page not found"))
- end
-
-end
+class PagesController < UrlController
+ #Main app can overwrite to customize the actions per page
+end
\ No newline at end of file