imalexsq / youPM

1 stars 0 forks source link

Actions and Resources #4

Closed commonlisp closed 12 years ago

commonlisp commented 12 years ago

From what I gather from the specs and discussion so far, we are looking at a routing scheme roughly as follows:

YouPM::Application.routes.draw do resources :managers

get "index/index"

root to: 'index#index'

Test routes for showing bootstrap design suggestions

get "signup" => "managers#signup" get "confirm" => "managers#confirmemail"

get "portfolio" => "managers#portfolio"

resources :properties

resources :ads

get "repost" => "ads#repost"

resources :activities

resources :tenants

resources :bills

resources :workorders

get "completedorder" => "workorders#markcomplete" end

imalexsq commented 12 years ago

I just added another model for Vendors, and changed the flow of adding a property.