method
collection_path
rails latest stable - Class:
ActiveResource::Base
collection_path(prefix_options = {}, query_options = nil)public
Gets the collection path for the REST resources. If the query_options parameter is omitted, Rails will split from the prefix_options.
Options
-
prefix_options - A hash to add a prefix to the request for nested URLs (e.g., :account_id => 19 would yield a URL like /accounts/19/purchases.json).
-
query_options - A hash to add items to the query string for the request.
Examples
Post.collection_path # => /posts.json Comment.collection_path(:post_id => 5) # => /posts/5/comments.json Comment.collection_path(:post_id => 5, :active => 1) # => /posts/5/comments.json?active=1 Comment.collection_path({:post_id => 5}, {:active => 1}) # => /posts/5/comments.json?active=1