Hi,
I am using issue linking (in jira 5.2.11). How can I disable delete this link button on the view screen? (image below)
Actually, the reason is that there is no settings in the permission scheme to allow/restrict users to delete issue links.
The only permission type is link issues.
Where is the permission for delete links?
Thanks.
you have already posted a same question here, pls avoid to post duplicate questions
https://answers.atlassian.com/questions/237357/jira-permission-to-unlink-issues
I'll quote your previous answer and close the other question as a duplicate:
rambanam prasad · 14,809 karma · 20 hours agoyou can try with permission based on workflow steps,
http://www.j-tricks.com/1/post/2011/02/permissions-based-on-workflow-status.html
i have't teied that, you can try somthing like this
jira.permission.link.delete.group.1=some-group-one
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately, this permission (Link Issues) rules both adding and deleting links.
You can do such workaround.
1. Create a plugin of web-panel type and put it into View Issue page.
2. In the velocity template of this plugin write a JS function:
<script type="text/javascript"> //your function here... </script>
3. In your script find all <a> elements like this:
<a class="icon icon-delete" title="Delete this link" id="delete-link_remote-10000" href="/secure/DeleteRemoteIssueLink.jspa?id=12100&amp;remoteIssueLinkId=10000&amp;atl_token=TOKEN"><span>Delete this link</span></a>
and remove them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.