Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DIS-180 Follow up hide Hoopla indexByday in Hoopla Settings #2197

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions code/web/release_notes/25.01.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@

### Hoopla Updates
- Optimize Hoopla daily indexing behavior and set "Index By Day" as a default setting. (DIS-180) (*YL*)
- Hide "Index By Day" in the Hoopla settings page. (DIS-180) (*YL*)

### Indexing Updates
- When indexing the 100, 700 and 800 fields to load information about authors and contributors include subfield c to distinguish between authors where titles and additional information is important. (DIS-161) (*MDN*)
Expand Down
4 changes: 2 additions & 2 deletions code/web/sys/Hoopla/HooplaSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public static function getObjectStructure($context = ''): array {
'label' => 'Index By Day',
'description' => 'Whether or hoopla indexing should only occur once a day',
'default' => 1,
'readOnly' => true,
'note' => 'This setting is defaulted to true for all Hoopla instances',
'type' => "hidden",
'hideInLists' => true,
],
'lastUpdateOfChangedRecords' => [
'property' => 'lastUpdateOfChangedRecords',
Expand Down
Loading