0

N2 CMS has the following roles by default: Everyone, Members, Writers, Editors and Administrators. It allows you to assign users to these roles and offers role assignments for each editable page.

Is there a way to easily create additional roles for specifying which groups of users can edit certain pages? Maybe a configuration option in the n2 section of the web.config?

Tron5000
  • 844
  • 11
  • 24

1 Answers1

0

Click on settings, set "show non pages in navigation" to checked. Open Users node for editing. You will see one row per line. Add your role on a new line.

Next, change web config to add your new role as editors

<editors dynamic="true" roles="Editors,NewRole" />
Dejan Milicic
  • 819
  • 9
  • 18
  • When I open the Users node for editing I see users grouped by letter. I am not allowed to add anything, just edit an existing user. The roles that each user can belong to are still limited to "Everyone", "Members", "Writers", "Editors" and "Administrators". I'm not sure what you mean by "Add your role on a new line." Am I missing something? – Tron5000 Jun 03 '13 at 22:23