Created
July 1, 2016 12:17
-
-
Save Circuit8/649c6668f40e8d2b15e74b69a87e924f to your computer and use it in GitHub Desktop.
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
api GET /api/products/:id/fabrics(.:format) api/fabrics#index {:format=>:json} |
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
namespace :api do | |
get 'products/:custom_id/fabrics', to: 'fabrics#index', defaults: { format: :json } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
get 'products/:custom_id/fabrics', to: 'fabrics#index', defaults: { format: :json }, as: 'api_product_fabrics'