- add ResumptionToken for OAI-ListIdentifiers
- max identifiers and reciords via config - add constants.php - add clear-expired command for deleting obsolete cache
This commit is contained in:
parent
9d8625225f
commit
79b51e93e7
11 changed files with 395 additions and 27 deletions
|
@ -13,6 +13,8 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'workspacePath' => storage_path() . DIRECTORY_SEPARATOR . "workspace",
|
||||
|
||||
'name' => env('APP_NAME', 'App'),
|
||||
|
||||
/*
|
||||
|
|
22
config/oai.php
Normal file
22
config/oai.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application. This value is used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| any other location as required by the application or its packages.
|
||||
|
|
||||
*/
|
||||
|
||||
'workspacePath' => public_path() . DIRECTORY_SEPARATOR . "workspace",
|
||||
|
||||
'max' => [
|
||||
'listidentifiers' => 15,
|
||||
'listrecords' => 15
|
||||
],
|
||||
];
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue