2024-09-30 17:21:45 -07:00
|
|
|
module AltStylesHelper
|
|
|
|
def view_or_edit_alt_style_url(alt_style)
|
|
|
|
if support_staff?
|
|
|
|
edit_alt_style_path alt_style
|
|
|
|
else
|
2024-10-11 15:40:20 -07:00
|
|
|
wardrobe_path(
|
|
|
|
species: alt_style.species_id,
|
|
|
|
color: alt_style.color_id,
|
|
|
|
style: alt_style.id,
|
|
|
|
)
|
2024-09-30 17:21:45 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|