Hi everyone,
I’m developing a Forge app for Jira and trying to use the jira:command
module. However, as soon as I call invoke()
, I get the following error:
My Manifest File:
modules:
jira:command:
- key: test-command
title: Test Dialog
shortcut: i r
target:
resource: customui
render: modal # Using Custom UI, so I set it to modal.
icon: arrow-right
keywords:
- test
resources:
- key: customui
path: customui/build
tunnel:
port: 3000
Things I’ve Tried:
Checked if my CLI is up to date with
forge --version
.
Ran
forge lint
to validate the manifest (no errors).
Deployed with
forge deploy
and reinstalled with forge install --upgrade
.
Ensured that the function I’m invoking is defined in the manifest.
Is there something I’m missing? Does jira:command
require any additional configuration?
Thanks in advance!