We have a small team of developers working on Kanbans in Jira Software. And therefore have premium for a team of 10. We were hoping we could get our 10 stakeholders access to just the general information (Ticket name, updated, last comment)
I created a confluence page and have inserted the Software Macro. The table is configured and working when I view it.
When an end user goes to the link, they get the error "JIRA Project doesn't exist or you don't have the permission to view it."
I have added the jira group to the filter permissions
I have added the jira group to the "Browse Projects" Permission in the board settings
Once I added the user to the Jira Software product, the table appeared.
Is it a true statement to say that in order to view the issue status on a kanban on a confluence page, the user has to be a licensed Jira Software user?
If false, then what am I missing?
If true, is there another way to make this work?
(I hear I should be able to set permissions to public but 1. I would rather not and 2. I do not see that as an option.
Please follow below steps:
To disable the welcome message for all users, complete the following steps to disable the Onboarding Filter:
Go to Manage Add-ons.
Choose System from the drop-down menu.
Search for "onboarding".
Expand all modules.
Disable the Onboarding Filter.
After disabling, new users won't be redirected to the /welcome.action page the first time they log into Confluence, instead, they will be redirected to the Confluence Dashboard
As Thiago clarified, the block code that you will need to remove under Confluence Admin > Layouts > Global Layout will be:
<div class="dashboard-group left">
<div class="dashboard-item welcome-message wiki-content">
$action.welcomeMessage
</div>
Regards,
Giuliano T.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Nitin,
There we go, see page below:
https://confluence.atlassian.com/display/DOC/Customising+the+Getting+Started+Guide+on+the+Dashboard
You need to delete a block of the Global Layout code, the page above shows step by step and the entire code to delete/edit. See also below how to customize your layouts:
https://confluence.atlassian.com/display/DOC/Customising+Site+and+Space+Layouts
I hope this helps you.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK...Found it....I still see Welcome.action appear when a new user logs in But now its blank page
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is what I see in GLOBAL LAYOUT -
I don't see the text mentioned in your link
## GLOBAL DECORATOR
## This decorator handles a global context, i.e. information which is independent of space.
## Supports modes: 'dashboard', 'userdir', 'rss'.
#set ($mode = $params.get("mode"))
#set ($context = $params.get("context"))
#set ($helper = $params.get("helper"))
#set ($infoPanelWidth = $params.get("infopanel-width"))
#set ($maxFavouritePages = "20") ## Change this value to increase the default number of favourite pages displayed on the Dashboard
#infoPanelInitFromParams()
#requireResourcesForContext("global")
<!-- GENERAL PAGE DECORATING BEGINS -->
#assistiveSkipLink("assistive.skiplink.to.dashboard.recent.updates" "dashboard-recently-updated")
<div class="pagebody">
#parse ( "/template/includes/actionerrors.vm" )
<div class="dashboard">
<div class="dashboard-section">
#if ($mode == "dashboard")
#parse ("/decorators/includes/dashboard-navigation.vm")
#requireResourcesForContext("dashboard")
#rssautodiscovery($action.rssDescriptor)
#permitSearchEngines()
<div class="dashboard-group left">
<div class="dashboard-item welcome-message wiki-content">
$action.welcomeMessage
</div>
#dashboard_renderGlobalActions("dashboardActionsId", ["system.dashboard"] )
#foreach ($webPanel in $webInterfaceManager.getDisplayableWebPanels("atl.dashboard.left", {}))
<div class="dashboard-item">
$!webPanel.getHtml($req.getParameterMap())
</div>
#end
</div>## left
<div class="dashboard-group right wiki-content">
$helper.renderConfluenceMacro("{recently-updated-dashboard:showProfilePic=true}")
</div>## right
#else
#if ($params.get("suppress-default-navigation") != "true")
<content tag="content-navigation">
<div id="navigation" class="content-navigation">
<ul class="ajs-menu-bar">
#menuMacros_renderButton("system.${mode}.button")
</ul>
</div>
</content>
#end
<div class="dashboard-group $!mode">
$body
</div>
#end
## INFO PANEL FOR ANY PAGE
#if ($infoPanelRequired)
<div style="width: $infoPanelWidth" id="helptd">
#infoPanel(true true true true)
</div>
#end
</div><!-- .dashboard-section -->
</div><!-- .dashboard -->
</div>
#parse ( "/breadcrumbs.vm" )
<!-- GENERAL PAGE DECORATING ENDS -->
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.