Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Hiding Application Links i.e. Dev servers from Create Link Forms

Lani Fry
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 6, 2020

When adding links/clones, Users are allowed to select from a list of Application Links through the Server Select Field - jira-app-link

What I would like, is to not have specific servers accessible to be linked to - as those App Links were created to support Administration Migration Tools and not needed for anything else. 

1 answer

0 votes
Manisha Kharga _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 9, 2020

Hi @Lani Fry 

If you want to make a link appear in the application navigator for only specific users, use the Groups box to specify which groups can see the link. To hide the link from all users, select the Hide checkbox (for example, if you want to temporarily hide the link without deleting it entirely).

Please refer to this link for more details:

https://confluence.atlassian.com/adminjiraserver088/layout-and-design/creating-links-in-the-application-navigator

You can do that using a simple javascript embedded into the Announcement Banner. Try using this example: We request you to please try first in your test/staging environment.

<script>
jQuery().ready(function() {
if(jQuery(".login-link").size()>0){
jQuery(".aui-header-before").hide();
}
});
</script>

 Thanks,
Manisha

Suggest an answer

Log in or Sign up to answer