-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Creating Own content #16022
Comments
Try to logout then login after you apply the permissions changes |
I believe "Edit and Publish or unpublish Own content" should be sufficient to create a new content item. What I think is happening is that we always check for the common permission (not "own") and then a handler will grant it if the corresponding "own" permission is set and the content item is owned by the current user. However here there is no content item yet, so we can't rely on the handler, hence the Creation checks should check for either role without a content item. But we also need to check if the issue is not only in the UI (not rendering the button because of that) and the actual controller is accepting this call just fine. |
Works for me with the main branch... 🤷♂️ |
So, this may be already fixed. @DJ-Paxton could you please check with the latest preview packages or with the source in |
It seems that this issue didn't really move for quite a while despite us asking the author for further feedback. Is this something you'd like to revisit any time soon or should we close? Please reply. |
Sorry, I couldn't test the latest version, you can close this. Thanks for your help! |
Thanks! |
Hi all, I'm trying to do a collaborative website where multiple people can create and update content.
In a previous project I created roles for specific
ContentTypes
and that worked fine, but because of the nature of this actual project I need multiple users to work with the same types and I found my workaround with Ownership.So, what I'm doing at the moment is using my Admin account to change the
owner
of the content item with the owner editor,and I created a role that only allows to Edit Own content.
The issue is I want that user to be able to
create
content,The Owner Role has the
Edit and Publish or unpublish Own content
permission enabled but it doesn't allow to create content (in green), then I can enableEdit or Publish for others
(in red) and the user will be able to create content, but also modify content that's not owned by him.When I save the for others permissions:
The user can create content (green) which is good, but also modify content that doesn't belong to him (red) which is bad.
Is there any option that I'm missing or some permission I'm doing wrong?
Thanks for the help!
The text was updated successfully, but these errors were encountered: