Add support for fits:alt-style-87305
item searches
Easy peasy!
This commit is contained in:
parent
d983a20989
commit
9243193bc8
1 changed files with 10 additions and 0 deletions
|
@ -72,6 +72,16 @@ class Item
|
||||||
Filter.not_fits_pet_type(pet_type, color_name:, species_name:)
|
Filter.not_fits_pet_type(pet_type, color_name:, species_name:)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Next, try the `fits:alt-style-87305` case.
|
||||||
|
match = value.match(/^alt-style-([0-9]+)$/)
|
||||||
|
if match.present?
|
||||||
|
alt_style_id, = match.captures
|
||||||
|
alt_style = load_alt_style_by_id(alt_style_id)
|
||||||
|
return is_positive ?
|
||||||
|
Filter.fits_alt_style(alt_style) :
|
||||||
|
Filter.not_fits_alt_style(alt_style)
|
||||||
|
end
|
||||||
|
|
||||||
# Next, try the `fits:nostalgic-faerie-draik` case.
|
# Next, try the `fits:nostalgic-faerie-draik` case.
|
||||||
match = value.match(/^([^-]+)-([^-]+)-([^-]+)$/)
|
match = value.match(/^([^-]+)-([^-]+)-([^-]+)$/)
|
||||||
if match.present?
|
if match.present?
|
||||||
|
|
Loading…
Reference in a new issue