Hi all,
I’ve developed a Forge jira:globalPage
module app with a landing page and I want it to be publicly accessible — that means available to users who are not logged in (anonymous access).
Here’s what I’ve tried so far:
I enabled anonymous access in the Jira project settings.
I attempted to configure unlicensedAccess
in the app’s manifest.yml
, like this:
modules:
jira:globalPage:
- key: landingpage-hello-world-page
resource: main
resolver:
function: resolver
title: LANDINGPAGE
unlicensedAccess:
- anonymous
- customer
However, I am using the globalPage
module for the landing page, and when I tried adding unlicensedAccess
to it, I got the following error:
unlicensedAccess
is not supported by the module ‘globalPage’.
This seems to confirm that globalPage
modules do not support unlicensed access, but I still need a way to display this landing page to anonymous users.
My questions:
- Is there any Forge-supported module that allows “unauthenticated users” to view a full page inside Jira?
- Is it technically possible within Forge to make a page fully public inside the Jira Service Management portal without requiring users to sign in?
- If this is not currently supported, is there a Jira-native approach (not external hosting) to achieve this within Atlassian’s boundaries?
Any help or suggestions would be really appreciated. Thank you!