Added the main controller (msf). Added it to routes.
git-svn-id: file:///home/svn/framework3/trunk@3948 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
57ff7d7c21
commit
76e577adae
|
@ -0,0 +1,6 @@
|
|||
class MsfController < ApplicationController
|
||||
|
||||
def index
|
||||
end
|
||||
|
||||
end
|
|
@ -0,0 +1,2 @@
|
|||
module MsfHelper
|
||||
end
|
|
@ -1,17 +1,5 @@
|
|||
ActionController::Routing::Routes.draw do |map|
|
||||
# The priority is based upon order of creation: first created -> highest priority.
|
||||
|
||||
# Sample of regular route:
|
||||
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
|
||||
# Keep in mind you can assign values other than :controller and :action
|
||||
|
||||
# Sample of named route:
|
||||
# map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
|
||||
# This route can be invoked with purchase_url(:id => product.id)
|
||||
|
||||
# You can have the root of your site routed by hooking up ''
|
||||
# -- just remember to delete public/index.html.
|
||||
# map.connect '', :controller => "welcome"
|
||||
map.connect '', :controller => "msf"
|
||||
|
||||
# Allow downloading Web Service WSDL as a file with an extension
|
||||
# instead of a file named 'wsdl'
|
||||
|
|
Loading…
Reference in New Issue