Change the error message when a facet is not searchable

This commit is contained in:
Kerollmops 2023-06-22 14:28:32 +02:00 committed by Louis Dureuil
parent 60ddd53439
commit 26f0fa678d
No known key found for this signature in database

View File

@ -128,11 +128,11 @@ only composed of alphanumeric characters (a-z A-Z 0-9), hyphens (-) and undersco
} }
)] )]
InvalidSortableAttribute { field: String, valid_fields: BTreeSet<String> }, InvalidSortableAttribute { field: String, valid_fields: BTreeSet<String> },
#[error("Attribute `{}` is not filterable. {}", #[error("Attribute `{}` is not facet-searchable. {}",
.field, .field,
match .valid_fields.is_empty() { match .valid_fields.is_empty() {
true => "This index does not have configured filterable attributes.".to_string(), true => "This index does not have configured facet-searchable attributes. To make it facet-searchable add it to the `filterableAttributes` index settings.".to_string(),
false => format!("Available filterable attributes are: `{}`.", false => format!("Available facet-searchable attributes are: `{}`. To make it facet-searchable add it to the `filterableAttributes` index settings.",
valid_fields.iter().map(AsRef::as_ref).collect::<Vec<&str>>().join(", ") valid_fields.iter().map(AsRef::as_ref).collect::<Vec<&str>>().join(", ")
), ),
} }