Showing posts with label sitecore-roles. Show all posts
Showing posts with label sitecore-roles. Show all posts

Wednesday, September 15, 2021

How to create a login for Content author in Sitecore

 By default sitecore provides an admin user with userid ‘Admin’ and password ‘b’. However additional users can be created in sitecore by following below steps.

  1. Login to sitecore as admin in desktop mode.

  2. Go to security tools and then user manager.

  3. Click on ‘New’ button present at the top left corner.

  4. Give the Username say ‘User1’, Email Id and Password.

  5. Then click on ‘Edit’ to add Roles to this new user.

  6. Select the following roles from the below list and click on Add. This list provide the roles required for a content author.

    • Sitecore\Developer
    • Sitecore\Sitecore Client Publishing
    • Sitecore\Designer
    • Sitecore\Author
    • Sitecore\Sitecore Client Users
  7. By adding the above roles, the below list of sub roles will be automatically added.

    • Sitecore\Sitecore Client Designing
    • Sitecore\Sitecore Client Configuring
    • Sitecore\Sitecore Client Maintaining
    • Sitecore\Sitecore Client Developing
    • Sitecore\Analytics Testing
    • Sitecore\Analytics Personalization
    • Sitecore\Sitecore Client Authoring
  8. Then click Ok and Finish. We have now created a new user and then assigned the roles of a content author.

Tuesday, October 13, 2020

Sitecore custom security roles and permissions

 This post focuses on creating custom Sitecore roles and permissions with separate roles for authors and reviewers in a Multisite instance.

Scenario: Consider an instance with multiple sites (site1, site2, site3 etc..). With multiple sites, we may need to have separate authors and reviewers for each Site.

For example, Site1 may need the roles -> Site1 author, Site1 reviewer. Similarly for Site2 may need -> Site2 author, Site2 reviewer

Steps to create

To implement custom roles and permissions for a multi site instance, we need the following roles to be created.

  • Base role for each Site
  • Author role
  • Review role
  • Workflow

Base Role

The sole purpose of a base role is to restrict the access to each individual site with required read and write permissions. Consider a site named 'Site1', in the Sitecore. To restrict access of the users to only this site's section, the base role created is 'Site1 Base'. below is how we have granted/denied the read and write permissions.

So any user with this role 'Site1 Base' will have access only to Site1 sections. Similarly, we can create different roles for different sites like Site2 Base, Site3 Base.. etc.,

Image Text

Workflow role###

Assuming that a Workflow is used, we are having the permissions set for the workflow too. This role is to add workflow related restrictions to users based on the workflow steps.

For example, the content author might not need access to publish content to live, instead Content reviewer should be able to review and also publish content to Live. In such cases we will have the workflow restrictions added to the Content Author role.

Lets consider a sample workflow for our example.

Image Text

We shall create a role 'Workflow Base' and assign the permission as shown below. So any user/role with 'Workflow base' role, will not have access to approve content and hence cannot publish the content.

Image Text

Author role

As the authors are specific to each site in the Sitecore, we shall create separate role for each site. Considering our example, we shall create a author role for Site1 as 'Site1 Author'. Create the new role 'Site1 Author' and add sub roles as shown below.

Here we have added the

  • Site1 Base -> this would restrict access to sections of Site1 only.
  • Workflow Base -> this would add workflow and publish restrictions.
  • Author, Sitecore client Authoring -> Basic Sitecore roles required for a content author.

Image Text

Reviewer role

Reviewer is the one who can review/approve content and publish it. So they would need the access of an author + publishing rights and this role should be specific to each site. So create a reviewer role for Site1 as 'Site1 Reviewer' and assign sub roles as below.

  • Site1 Base
  • Author, Sitecore Client athoring
  • Sitecore Client publishing, Sitecore Client advanced publishing -> added these to have publishing rights

Note: There is no Workflow base role added to reviewer as these users should not be restricted with workflow and should have the complete publish access.

Image Text

Now for each site, we will have 3 roles - Base role, Author role & Reviewer role. Below are all the roles created for Site1. The Workflow base role can be shared across the instance if all the Sites use the same Workflow.

Image Text

Similarly for another Site say 'Site2', below are the roles we would create.Image Text

For any common permissions or roles to be assigned, across all roles/users the best place to be added is the base role. Instead of adding for each user or each role, if we add them to the base roles, they would be inherited automatically

Image Text

Multi language roles

Till now we haven't considered the language restriction on content authors. For multi site and multi language sites, there may be a case that content authors may need access only to specific languages/regions.

For example, in Site1 there could be 2 languages (EN & es-ES). If we need separate content author roles for each language, then we might need to create separate roles like 'Site1 EN Author', 'Site1 ESES Author'.

Below is how we differentiate based on the access to languages. Note: For non EN language authors, they might need the read only access to EN. So granted the read access to EN language but denied LanguageWrite access.

Site1 EN Author permissions

Image Text

Site1 ESES Author permissions

Image Text

Hope this helps!! Please share do your thoughts.