Link pet states to outfit editor instead of their not-useful show page

I was considering doing more with the show page at one point, but ehh,
I think the outfit editor is the better place for that stuff anyway.
This commit is contained in:
Emi Matchu 2024-10-11 17:44:23 -07:00
parent 381a892af8
commit 2cc0c5b031

View file

@ -26,11 +26,16 @@ module PetStatesHelper
POSE_OPTIONS POSE_OPTIONS
end end
def useful_pet_state_path(...) def useful_pet_state_path(pet_type, pet_state)
if support_staff? if support_staff?
edit_pet_type_pet_state_path(...) edit_pet_type_pet_state_path(pet_type, pet_state)
else else
pet_type_pet_state_path(...) wardrobe_path(
color: pet_type.color_id,
species: pet_type.species_id,
pose: pet_state.pose,
state: pet_state.id,
)
end end
end end
end end