You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user part of the editing team tries to access a contribution he's not part of, the following error will come up: The contributions of this event have not been published yet.
Checking that specific controller RHContributionEditableBase, we call RHContributionDisplayBase which as:
if (not published and not self.event.can_manage(session.user)
and not self.contrib.is_user_associated(session.user)):
raise NotFound(_("The contributions of this event have not been published yet."))
can_manage doesn't include reviewing managers or paper editors. On the other hand, the editing team is also unable to see a contribution under RHContributionDisplayBase.
The text was updated successfully, but these errors were encountered:
When a user part of the editing team tries to access a contribution he's not part of, the following error will come up:
The contributions of this event have not been published yet.
Checking that specific controller RHContributionEditableBase, we call RHContributionDisplayBase which as:
can_manage
doesn't include reviewing managers or paper editors. On the other hand, the editing team is also unable to see a contribution underRHContributionDisplayBase
.The text was updated successfully, but these errors were encountered: