I am developing a jira app using forge framework. the app makes api calls to another rest api and needs to add some apikey in the payload. we have been able to store a default apikey
- globally in the jira app admin layer
- project level
The issue we are running into is that we also need the jira user to be able to define their own apikey and store it somewhere in jira. We want the app to only default to common apikey when the user apikey is null.We see the various other apps expose some settings menu at the user level. How can we expose this for our app using the forge framework, store the apikey somewhere and to be able to reference it within our code.
