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

Ror registry data set cache api endpoint #4442

Closed
wants to merge 11 commits into from
18 changes: 18 additions & 0 deletions api/v1/rors/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
/**
* @defgroup api_v1_rors Ror API requests
*/

/**
* @file api/v1/rors/index.php
*
* Copyright (c) 2024 Simon Fraser University
* Copyright (c) 2024 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
*
* @ingroup api_v1_rors
*
* @brief Handle API requests for rors.
*/

return new \PKP\handler\APIHandler(new \PKP\API\v1\rors\PKPRorController());
1 change: 1 addition & 0 deletions dbscripts/xml/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
<migration class="PKP\migration\install\TombstoneMigration" />
<migration class="PKP\migration\install\DoiMigration" />
<migration class="PKP\migration\install\InstitutionsMigration" />
<migration class="PKP\migration\install\RorsMigration" />

<migration class="APP\migration\install\OJSMigration" />

Expand Down
1 change: 1 addition & 0 deletions dbscripts/xml/upgrade.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
<migration class="PKP\migration\upgrade\v3_4_0\I9039_DropDeprecatedFields"/>
<migration class="APP\migration\upgrade\v3_4_0\I8933_EventLogLocalized"/>
<migration class="APP\migration\upgrade\v3_4_0\I7470_FixDeprecatedFileStage"/>
<migration class="PKP\migration\upgrade\v3_4_0\I7135_CreateNewRorRegistryCacheTables"/>
<note file="docs/release-notes/README-3.4.0" />
</upgrade>

Expand Down
Loading