Skip to content

Commit

Permalink
available_actions: reorder actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jennur authored and zzacharo committed Jul 17, 2023
1 parent 28e8f6c commit 4fb3e53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion invenio_rdm_records/requests/community_inclusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class CommunityInclusion(RequestType):
"submit": SubmitAction,
"delete": actions.DeleteAction,
"accept": AcceptAction,
"cancel": actions.CancelAction,
"decline": actions.DeclineAction,
"cancel": actions.CancelAction,
"expire": actions.ExpireAction,
}
2 changes: 1 addition & 1 deletion invenio_rdm_records/requests/community_submission.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ class CommunitySubmission(ReviewRequest):
"submit": SubmitAction,
"delete": actions.DeleteAction,
"accept": AcceptAction,
"cancel": CancelAction,
"decline": DeclineAction,
"cancel": CancelAction,
"expire": ExpireAction,
}

0 comments on commit 4fb3e53

Please sign in to comment.