7575 anonymousCache :
7676 # Maximum number of pages to cache. Default is zero (0) which means anonymous user cache is disabled.
7777 # As all pages are cached in server memory, increasing this value will increase memory needs.
78- # Individual cached pages are usually small (<100KB), so a value of max=1000 would only require ~100MB of memory.
78+ # Individual cached pages are usually small (<100KB), so a value of max=1000 would only require ~100MB of memory.
7979 max : 0
8080 # Amount of time after which cached pages are considered stale (in ms). After becoming stale, the cached
8181 # copy is automatically refreshed on the next request.
@@ -131,12 +131,16 @@ submission:
131131 # NOTE: after how many time (milliseconds) submission is saved automatically
132132 # eg. timer: 5 * (1000 * 60); // 5 minutes
133133 timer : 0
134+ # Always show the duplicate detection section if enabled, even if there are no potential duplicates detected
135+ # (a message will be displayed to indicate no matches were found)
136+ duplicateDetection :
137+ alwaysShowSection : false
134138 icons :
135139 metadata :
136140 # NOTE: example of configuration
137141 # # NOTE: metadata name
138142 # - name: dc.author
139- # # NOTE: fontawesome (v5 .x) icon classes and bootstrap utility classes can be used
143+ # # NOTE: fontawesome (v6 .x) icon classes and bootstrap utility classes can be used
140144 # style: fas fa-user
141145 - name : dc.author
142146 style : fas fa-user
@@ -147,18 +151,40 @@ submission:
147151 confidence :
148152 # NOTE: example of configuration
149153 # # NOTE: confidence value
150- # - name: dc.author
151- # # NOTE: fontawesome (v5.x) icon classes and bootstrap utility classes can be used
152- # style: fa-user
154+ # - value: 600
155+ # # NOTE: fontawesome (v6.x) icon classes and bootstrap utility classes can be used
156+ # style: text-success
157+ # icon: fa-circle-check
158+ # # NOTE: the class configured in property style is used by default, the icon property could be used in component
159+ # configured to use a 'icon mode' display (mainly in edit-item page)
153160 - value : 600
154161 style : text-success
162+ icon : fa-circle-check
155163 - value : 500
156164 style : text-info
165+ icon : fa-gear
157166 - value : 400
158167 style : text-warning
168+ icon : fa-circle-question
169+ - value : 300
170+ style : text-muted
171+ icon : fa-thumbs-down
172+ - value : 200
173+ style : text-muted
174+ icon : fa-circle-exclamation
175+ - value : 100
176+ style : text-muted
177+ icon : fa-circle-stop
178+ - value : 0
179+ style : text-muted
180+ icon : fa-ban
181+ - value : -1
182+ style : text-muted
183+ icon : fa-circle-xmark
159184 # default configuration
160185 - value : default
161186 style : text-muted
187+ icon : fa-circle-xmark
162188
163189# Default Language in which the UI will be rendered if the user's browser language is not an active language
164190defaultLanguage : en
@@ -272,6 +298,8 @@ homePage:
272298 # No. of communities to list per page on the home page
273299 # This will always round to the nearest number from the list of page sizes. e.g. if you set it to 7 it'll use 10
274300 pageSize : 5
301+ # Enable or disable the Discover filters on the homepage
302+ showDiscoverFilters : false
275303
276304# Item Config
277305item :
@@ -285,8 +313,17 @@ item:
285313 # settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
286314 pageSize : 5
287315
316+ # Community Page Config
317+ community :
318+ # Search tab config
319+ searchSection :
320+ showSidebar : true
321+
288322# Collection Page Config
289323collection :
324+ # Search tab config
325+ searchSection :
326+ showSidebar : true
290327 edit :
291328 undoTimeout : 10000 # 10 seconds
292329
@@ -382,7 +419,79 @@ vocabularies:
382419 vocabulary : ' srsc'
383420 enabled : true
384421
385- # Default collection/community sorting order at Advanced search, Create/update community and collection when there are not a query.
422+ # Default collection/community sorting order at Advanced search, Create/update community and collection when there are not a query.
386423comcolSelectionSort :
387424 sortField : ' dc.title'
388425 sortDirection : ' ASC'
426+
427+ # Example of fallback collection for suggestions import
428+ # suggestion:
429+ # - collectionId: 8f7df5ca-f9c2-47a4-81ec-8a6393d6e5af
430+ # source: "openaire"
431+
432+
433+ # Search settings
434+ search :
435+ # Settings to enable/disable or configure advanced search filters.
436+ advancedFilters :
437+ enabled : false
438+ # List of filters to enable in "Advanced Search" dropdown
439+ filter : [ 'title', 'author', 'subject', 'entityType' ]
440+
441+
442+ # Notify metrics
443+ # Configuration for Notify Admin Dashboard for metrics visualization
444+ notifyMetrics :
445+ # Configuration for received messages
446+ - title : ' admin-notify-dashboard.received-ldn'
447+ boxes :
448+ - color : ' #B8DAFF'
449+ title : ' admin-notify-dashboard.NOTIFY.incoming.accepted'
450+ config : ' NOTIFY.incoming.accepted'
451+ description : ' admin-notify-dashboard.NOTIFY.incoming.accepted.description'
452+ - color : ' #D4EDDA'
453+ title : ' admin-notify-dashboard.NOTIFY.incoming.processed'
454+ config : ' NOTIFY.incoming.processed'
455+ description : ' admin-notify-dashboard.NOTIFY.incoming.processed.description'
456+ - color : ' #FDBBC7'
457+ title : ' admin-notify-dashboard.NOTIFY.incoming.failure'
458+ config : ' NOTIFY.incoming.failure'
459+ description : ' admin-notify-dashboard.NOTIFY.incoming.failure.description'
460+ - color : ' #FDBBC7'
461+ title : ' admin-notify-dashboard.NOTIFY.incoming.untrusted'
462+ config : ' NOTIFY.incoming.untrusted'
463+ description : ' admin-notify-dashboard.NOTIFY.incoming.untrusted.description'
464+ - color : ' #43515F'
465+ title : ' admin-notify-dashboard.NOTIFY.incoming.involvedItems'
466+ textColor : ' #fff'
467+ config : ' NOTIFY.incoming.involvedItems'
468+ description : ' admin-notify-dashboard.NOTIFY.incoming.involvedItems.description'
469+ # Configuration for outgoing messages
470+ - title : ' admin-notify-dashboard.generated-ldn'
471+ boxes :
472+ - color : ' #B8DAFF'
473+ title : ' admin-notify-dashboard.NOTIFY.outgoing.queued'
474+ config : ' NOTIFY.outgoing.queued'
475+ description : ' admin-notify-dashboard.NOTIFY.outgoing.queued.description'
476+ - color : ' #FDEEBB'
477+ title : ' admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry'
478+ config : ' NOTIFY.outgoing.queued_for_retry'
479+ description : ' admin-notify-dashboard.NOTIFY.outgoing.queued_for_retry.description'
480+ - color : ' #FDBBC7'
481+ title : ' admin-notify-dashboard.NOTIFY.outgoing.failure'
482+ config : ' NOTIFY.outgoing.failure'
483+ description : ' admin-notify-dashboard.NOTIFY.outgoing.failure.description'
484+ - color : ' #43515F'
485+ title : ' admin-notify-dashboard.NOTIFY.outgoing.involvedItems'
486+ textColor : ' #fff'
487+ config : ' NOTIFY.outgoing.involvedItems'
488+ description : ' admin-notify-dashboard.NOTIFY.outgoing.involvedItems.description'
489+ - color : ' #D4EDDA'
490+ title : ' admin-notify-dashboard.NOTIFY.outgoing.delivered'
491+ config : ' NOTIFY.outgoing.delivered'
492+ description : ' admin-notify-dashboard.NOTIFY.outgoing.delivered.description'
493+
494+
495+
496+
497+
0 commit comments