When filtering to a specific pet type, redirect right to it!
That is, if you filter to "Candy Chia", we just redirect straight to it, if it exists; rather than showing you a results page.
This commit is contained in:
parent
7c1b3ca447
commit
bba863b94b
1 changed files with 4 additions and 0 deletions
|
@ -25,6 +25,10 @@ class PetTypesController < ApplicationController
|
|||
if @selected_color
|
||||
@pet_types = @pet_types.where(color_id: @selected_color)
|
||||
end
|
||||
|
||||
if @selected_species && @selected_color && @pet_types.size == 1
|
||||
redirect_to @pet_types.first
|
||||
end
|
||||
}
|
||||
|
||||
format.json {
|
||||
|
|
Loading…
Reference in a new issue