This simple Forge app adds a prioritization custom field that you can configure on your issue screens in classic projects. The purpose of the app is to demonstrate how to develope quickly serverless applications with Atlassian Forge.
See Set up Forge for instructions to get set up.
Once you have logged into the CLI (forge login
), follow the steps below to install the app onto your site:
- Clone this repository
- Run
forge register
to register a new copy of this app to your developer account - Run
npm install
to install your dependencies - Run
forge deploy
to deploy the app into the default environment - Run
forge install
and follow the prompts to install the app
- Go the the list of custom fields.
- Find the Prioritization Custom Field custom field.
- Click the more menu, and then select Associate to Screens.
- Check the screens you want to use the field on, and then click Update.
The app consists of one custom field defined in the manifest.yml
file.
The custom field's view is implemented by the renderFieldView
function defined in /src/index.jsx
.
The custom field's editing experience is implemented by the renderFieldEdit
function defined in /src/index.jsx
.
Copyright (c) 2020 Atlassian and others. Apache 2.0 licensed, see LICENSE file.