I'd like to assign an issue a security level by default, based on the component an issue is assigned to. Possible? Suggestions? Thanks so much in advance.
Unfortunately, the answers you've been given so far only work for one very specific situation - they do NOT set the security level, they set the assignee to one person and then rely on the default security scheme in the project to do things like "hide the issue from everyone except that person".
If that's what you need to do, then it'll work (with the additional caveat that you also really need to understand the rules about who the component lead is when the user selects multiple components)
To actually do "security level set by component", you need to do some coding. You need to find/write a post-function to add to the "create" transtion (or listener if you want to do it on edit actions). The code is a simple "if component X, then set security Y" block of statements. I'd look at using the script runner plugin to do it.
I am not a developer however I am tasked with investigating setting security level by component. I have downloaded a trial of Scriptrunner but could use an example of the script you noted here where i (as a non technical user) can test an "if component X, then set security to Y" script to verify we can move forward with this integration. Would you be able to assist me in this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How to write the condition to set security level based on Component,i am writing
issue.component?.name == 'Sample'
but not able to do it.thanks in advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Component is an array of 0 to many components, I think you need to use a "contains" rather than "=="
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Component is an array of 0 to many components, so I think you need to use a "contains" rather than "=="
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your quick reply,I want to set Security level to only one component
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank u so much.It works finally
issue.components*.name.contains('Sample')
Chhaya
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As prasad suggested, if you want only the assignee be Component Lead then ok.
If you also want security to view that issue by key or by means of Issue Navigator then you need to set Browse Project permission to Current Assignee. You can find here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
go to your project configuration page, edit the component and define "component lead" as tandard assignee
This way, every time a component has been selected and the assignee is set to the default "Automatic", it will be assigned to the component lead
you can configure security level for current assignee.
i hope this will help you!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
where do I configure security level for current assignee.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the "security scheme"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for quick reply Nic. i don't see where. unless mis-interpreting something, in the scheme I can just say which users can SEE issues with this level. I don;t see a way to SET the level based on security
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
A security scheme defines a set of levels that can be applied to an issue. Each level is a set of rules that say who can see the issue with that level.
To set a security level on an issue, a user must
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline 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.