forked from pkp/ojs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[OJS][main] #9887 Invitation API Support (pkp#4297)
* pkp/pkp-lib#9887 API Support * pkp/pkp-lib#9887 Redesigning Invitations * pkp/pkp-lib#9887 Add ChangeProfileEmail Invitation * pkp/pkp-lib#9887 Remove unnecessary PKP classname prefixes * pkp/pkp-lib#9887 Fix copyright dates for new code * pkp/pkp-lib#9887 Add email template on upgrade * pkp/pkp-lib#9887 Don't put hash method into function name * pkp/pkp-lib#9887 Submodule update ##asmecher/i9887## --------- Co-authored-by: Dimitris Efstathiou <[email protected]>
- Loading branch information
Showing
5 changed files
with
27 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
/** | ||
* @defgroup api_v1_invitations Invitations API requests | ||
*/ | ||
|
||
/** | ||
* @file api/v1/invitations/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_invitations | ||
* | ||
* @brief Handle API requests for invitations. | ||
*/ | ||
|
||
use PKP\API\v1\invitations\InvitationController; | ||
|
||
return new \PKP\handler\APIHandler(new InvitationController()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule pkp
updated
50 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters