Skip to content

Commit

Permalink
fixes ufal#1096 (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosarko authored Dec 14, 2023
1 parent e880e37 commit 6989e8f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dspace/config/spring/api/discovery.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
<ref bean="searchFilterLanguage" />
<ref bean="searchFilterItemsCommunity"/>
<ref bean="searchFilterType"/>
<ref bean="searchFilterPublisher"/>
</list>
</property>
<!--The sort filters for the discovery search-->
Expand Down Expand Up @@ -2488,6 +2489,17 @@
<property name="sortOrderFilterPage" value="COUNT"/>
</bean>

<bean id="searchFilterPublisher" class="org.dspace.discovery.configuration.DiscoverySearchFilterFacet">
<property name="indexFieldName" value="publisher"/>
<property name="metadataFields">
<list>
<value>dc.publisher</value>
</list>
</property>
<property name="sortOrderSidebar" value="COUNT"/>
<property name="sortOrderFilterPage" value="COUNT"/>
</bean>

<bean id="searchFilterEntityType" class="org.dspace.discovery.configuration.DiscoverySearchFilterFacet">
<property name="indexFieldName" value="entityType"/>
<property name="metadataFields">
Expand Down

0 comments on commit 6989e8f

Please sign in to comment.