Is there a way to tell Sitecore (using workflow or some other way) that a user should only be able to modify the items that they created in Sitecore?

My only way that I can think of to do it is to create a folder for each user that they have rights to and then use Sitecore Queries to gather the items for consumption on the website. That of course is not automatic and doesn't scale to a lot of content creators.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use workflow to achive this.

Create a custom action to do the following:

  1. Get the item
  2. Get the sitecore authoring role
  3. Remove inheritance for Write, Rename, Delete for the sitecore authoring role
  4. Add Write, Rename, Delete for the specific user
  5. Add the action to the initial step of you workflow
  6. add the workflow as the default workflow for your items (set it in the standard values for your templates)
link|improve this answer
Sounds great, I just didn't want to write code if there was some way to do it in configuration. Thanks! – JoshBaltzell May 24 '11 at 19:57
It would have been nice. I think with sitecore you don't get a lot of features out of the box but on the other hand it's really customisable and you can do almost anything pretty easily. – marto May 24 '11 at 20:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.