Is it possible and how to give permissions to issue Reporters to add watchers to the issues they open?
Yes, this is a role option. Under Administration | Roles, edit the role (I'm assuming you have a role named "Reporters"?). Enable the "Add Watchers" option, within the Issue tracking section.
Related
I have installed Airflow in my Ubuntu system and trying to deploy Airflow to production. I would like to turn off the menu Docs on the UI (browser).
I was reading setting permissions on the menus here access-control but it is hard to turn off this menu for each role. I am curious to know if we can Disable/Hide/Remove Docs menu from the root.
There's no one-click way to turn it off globally. I wonder why it's hard to turn it off for each role? The only way to truly perform this in one action is to query the metastore directly and remove the menu access on Docs permission from all roles using a single SQL query.
Assuming you don't have too many roles, it takes just a few clicks in the UI. First you'll need Admin permissions and go to Security -> List Roles. In there, edit each role and remove the menu access on Docs permission.
I'm trying to create my first project in google cloud with organization's administrator account. I have access to the administrator's email and passwords and I am logging in with that account to do so. The problem is that when I click on create new project I receive the following error:
There was an error while loading /home/dashboard?project=proven-now-305315&authuser=1.
You are missing at least one of the following required permissions:
Project
resourcemanager.projects.get
Check that the project ID is valid and you have permissions to access it. Learn more
Send feedback
The detail is that in my resource administration panel I already gave the permission that they ask me to the resource as shown in the following image:
As I have read, the project IAM Admin role should grant the resourcemanager.projects.get role and as you can see in the image the resource rcv # .. which is the administrator has it activated, however I keep trying to create a new project and it doesn't allow me to do it. Any idea?
In case anybody else, like me, reaches this answer, I want to point out that the accepted answer is correct, but for me I had to also make sure that within the settings, I ensured that Project Creation Settings on the right pane and under the section of Cloud Resource Manager Api Settings was set to on. It was turned off by default. Many people on my team overlooked this as it is significantly smaller text.
This may be an option that was not present before or it was turned on by default in the past. For us, it was turned off.
Please refer to the included image for a visual representation of the
settings that need to be turned on.
The problem was for some reason the Google Cloud was disable for all users, I solved following this instructions. Solved with this!
To activate this service, please follow the steps:
Access the admin console and go to Apps -> Additional Google Services
Look for the service “Google Cloud Platform” and click on the box next to it
In to top right corner click in “ON”
Confirm you want to turn it on in the pop-up box.
How is it that on my "Projects" page on Redmine, even once connected, there's no "New Project" link anywhere to be found?
Contrary to the demo version.
My account
Their demo
Thank you very much in advance!
Redmine has fine-grained, role-based permission system. Permissions are managed on global and per-project level, even per-field and per-status, based on workflow...
You don't see new project button, because you are not administrator, nor you have any role on some project which can grant you that permission.
You should contact your administrator or project manager to elevate your role.
I'm noticing an issue in the role management module. When attempting to create a user with a decreased role-set, say: only having login permission and list permission on the assets. The user is unable to see the "List" sub-menu under the
"Metadata" menu. Although the "Metadata" menu displays with nothing underneath it.
The link is an album with pictures of both the issue and the permissions for that user.
Please assist.
As descried in the documentation, it is required to have the WS-API permission selected.
Must have missed that in the Roles docs.
We are cleaning up the permissions in our Sitecore instance and we are running in to users that were granted specific access over the years. Now I would like to put all of our permissions in to roles and only grant rights via roles.
Is there a way to see the rights specifically assigned to a user? We have a small enough number of users that I could fix this manually, but the security viewer shows the cumulative permissions from user rights and role rights.
The query idea actually worked. So you can use Xpath Builder (in Dev Center) for this. It will be a little slow, but gives you the items:
/sitecore/content/myRoot//*[contains(#__Security,'username')]
Josh,
I just released a little script that should help you get moving on this. This script will show you all values of the __security field and allow you to reset them all. You will need to modify to reset for a specific user.
http://seankearney.com/post/Sitecore-Security-Report-and-Reset.aspx
Figured I would throw this out there after some testing with Rocks.
You can report on security from Sitecore Rocks (as mentioned in my comment to Bryan):
select ##ID as ID, ##Name as Name, ##Path as Path, #__Security from /sitecore/content/home//*[contains(#__Security,'xxxx')];
You can also reset the security field with a query too!
update set #__Security = "" from /sitecore/content/home//*[contains(#__Security,'xxxx')];