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

pkp/pkp-lib#10571 WIP: Add checks to limit email template access by user groups #4510

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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 dbscripts/xml/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
<migration class="PKP\migration\install\CategoriesMigration" />
<migration class="PKP\migration\install\HighlightsMigration" />
<migration class="APP\migration\install\MetricsMigration" />
<migration class="PKP\migration\install\EmailTemplateUserGroupAccessMigration"/>

<!-- Other install tasks -->
<code function="createData"/>
Expand Down
5 changes: 4 additions & 1 deletion dbscripts/xml/upgrade.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
-->

<install version="3.5.0.0">
<install version="3.6.0.0">
<code function="checkPhpVersion" />

<upgrade minversion="2.0.0.0" maxversion="3.2.9.9">
Expand Down Expand Up @@ -152,6 +152,9 @@
<migration class="PKP\migration\upgrade\v3_5_0\COA75_AddUserRoleEndEmail"/>
</upgrade>

<upgrade minversion="3.5.0.0" maxversion="3.5.0.0">
<migration class="PKP\migration\upgrade\v3_6_0\I10403_EmailTemplateUserGroupAccess"/>
</upgrade>
<!-- update plugin configuration - should be done as the final upgrade task -->
<code function="addPluginVersions" />
</install>
Loading