add changes

This commit is contained in:
2012-03-28 15:47:20 +02:00
parent 2ca8e2c533
commit 664b001e5c
17 changed files with 176 additions and 118 deletions
@@ -0,0 +1,3 @@
class PagesController < ApplicationController
include Cmtool::Includes::PagesController
end
+3
View File
@@ -1,5 +1,8 @@
Rails.application.routes.draw do
devise_for :users, :controllers => {:sessions => 'cmtool/sessions', :passwords => 'cmtool/passwords'}
match "/:name" => "pages#show"
match "/*url" => "pages#not_found"
root :to => 'pages#home'
mount Cmtool::Engine => "/cmtool"
end