This is probably quite simple, but how can I make a params optional?
resources :places
match 'register/:id' => 'places#new', :as => :register
currently... it breaks if the :id
is not passed which most of the time it won't be.
<%= link_to "Place Sign Up", register_path %>