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

record: add create_or_update_many permission #100

Merged
merged 1 commit into from
Jul 31, 2024
Merged
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
3 changes: 2 additions & 1 deletion invenio_records_permissions/policies/records.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from werkzeug.utils import import_string

from ..errors import UnknownGeneratorError
from ..generators import AnyUser, AnyUserIfPublic, Disable, RecordOwners
from ..generators import AnyUser, AnyUserIfPublic, Disable, RecordOwners, SystemProcess
from .base import BasePermissionPolicy


Expand Down Expand Up @@ -67,6 +67,7 @@ class RecordPermissionPolicy(BasePermissionPolicy):
can_read_files = [AnyUserIfPublic(), RecordOwners()]
can_update_files = [RecordOwners()]
can_read_deleted_files = []
can_create_or_update_many = [SystemProcess()]

def __init__(self, action, **over):
"""Constructor."""
Expand Down