Community

Give author edit permission for a particular node

Hi,
I have a Drupal website that is using the Content Access module.

In this website every association has a page with contact and other information.
I need to give permission to a particular user to edit an association page, but not the other ones.
I also need to give this user the ability to create new subpages of his association page.

Something like this:

Association A
---subpage A1
---subpage A2
---subpage A3
Association B
Association C
---subpage C1
---subpage C2

If user U has permission for association A he could create/edit pages A, A1, A2 and A3, but he cannot edit pages B, C, C1 and C2.

Which is the easiest way to achieve this?
Thank you.

Comments

One way

In permissions, allow users to edit their own content, then change the author of a node to the user in question. Then they are the author and can edit their own content.

For the sub page thing, create a new content type, add a node reference field referring to the association content type and then use views with a relation based on the node reference field.

______________________________________________________

Follow me at http://www.twitter.com/WebsterJ

Thank you for your help, it

Thank you for your help, it seems reasonable. :-)