Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page /sessions that displays a form.

I want to to post to itself and then display the results.

My routes currently look like this

 namespace :api do
  namespace :v1 do
    resources :users do
     match :all_users, :on => :collection, :as => "/users"
    end
    resources :sessions, :only => [ :index ]
    resources :user_info do
      match :user_info, :on => :collection
    end
    resources :user_schedule do
      match :user_schedule, :on => :collection
    end
end

so sessions now only shows the index, but I want it to respond to both get and post requests, and display my json results if it is a post request.

Eventually I'd like all other routes to follow the same

Thanks

share|improve this question

1 Answer

Use

resource :sessions

Singular. That creates singular resources, as explained in here

You still go to the different actions in the controller depending on the http method, so you can choose what to render in each case.

share|improve this answer
I actually ended up using a seperate get and post for each that I'll update my main post with. – Squadrons Dec 6 '12 at 21:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.