Hi!
In a project I have a process of delegating a task to another project. I need to check if the selected user is in the Developers role in that project.
I found isUserInRole(user,project, role). But in the user need to register the user name or key.
How can I pull the key out of the field?
Hi @Ступникова Анна Александровна
If you use a standard user picker field, it should be quite simple.
Run the following script from the SIL Manager (make sure to specify the issue context via Run Configuration)
string usertocheck = customfield_11606 ; // here custom field Id needs to be replaced with actual id
string currentproject = project;
string role="Developers";
return isUserInRole(usertocheck , currentproject , role);
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.