member()
Instance Public methods
To add a member route, add a member block into the resource block:
resources :photos do
member do
get 'preview'
end
end
This will recognize /photos/1/preview with GET, and route to
the preview action of PhotosController. It will also create
the preview_photo_url and preview_photo_path
helpers.
Please login to continue.