Try our conversational search powered by Generative AI!

Access rights & Permissions

Vote:
 

Hi

Can I give a CMS user permission to only run scheduled jobs but I don't want to give permissions to change access rights. 

By default, WebAdmins & Administrators can access the "Admin" tab. I want to create a user access group that is responsible for Schedule Jobs. Can I do that?

Thanks

#253809
Apr 23, 2021 9:55
Vote:
 

I have resolved it. Instead of limiting WebAdmin access, I restrict access to change "Access rights" pages to Administrator only. like below

 <location path="episerver/CMS/Admin/security.aspx">
	<system.web>
	    <authorization>
				<allow roles="Administrators" />
				<deny users="*" />
			</authorization>
		</system.web>
  </location>
	<location path="episerver/CMS/Admin/AdminGroup.aspx">
		<system.web>
			<authorization>
				<allow roles="Administrators" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>
	  <location path="episerver/CMS/Admin/SearchUsers.aspx">
	<system.web>
	    <authorization>
				<allow roles="Administrators" />
				<deny users="*" />
			</authorization>
		</system.web>
  </location>
	<location path="episerver/CMS/Admin/EditUser.aspx">
		<system.web>
			<authorization>
				<allow roles="Administrators" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>

Feel free to suggest any solution more appropriate 

#253813
Apr 23, 2021 10:39
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.