From 2864abd8c2e04051237b5984049bbf6626aa5ad7 Mon Sep 17 00:00:00 2001 From: Julian Vennen Date: Fri, 15 Sep 2023 21:29:16 +0200 Subject: [PATCH] Add created and modified timestamp to search facets (#708) --- src/search/indexing/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/search/indexing/mod.rs b/src/search/indexing/mod.rs index cea9dd02..d0cd58d7 100644 --- a/src/search/indexing/mod.rs +++ b/src/search/indexing/mod.rs @@ -197,7 +197,9 @@ const DEFAULT_ATTRIBUTES_FOR_FACETING: &[&str] = &[ "author", "title", "date_created", + "created_timestamp", "date_modified", + "modified_timestamp", "project_id", "open_source", "color",