Last active
August 29, 2015 14:03
-
-
Save duyleekun/f86638fef90e4d7210df to your computer and use it in GitHub Desktop.
rake routes bug?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Prefix Verb URI Pattern Controller#Action | |
report POST /report(.:format) reports#create | |
new_report GET /report/new(.:format) reports#new | |
GET /report(.:format) reports#show |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Rails.application.routes.draw do | |
resource :report, only: [:new,:show,:create] do | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment