Skip to content

Commit

Permalink
Include optional steps in Configure Atlassian OAuth App, allow users …
Browse files Browse the repository at this point in the history
…the set their app to public to get rid of oauth flow warning message (#1166)
  • Loading branch information
tybalex authored Jan 9, 2025
1 parent 5d91c66 commit f68ac68
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ui/admin/app/lib/model/oauthApps/providers/atlassian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@ const steps: OAuthFormStep<typeof schema.shape>[] = [
label: "Client Secret",
inputType: "password",
},
{
type: "markdown",
text:
"### (Optional): Make Your OAuth App Public\n" +
"By default, your OAuth App is private. When users authorize their account with your app, they will see a warning like: `Make sure you trust [Your App Name]`. To remove this warning, follow these steps to make your app public:\n" +
"- Navigate to the `Distribution` tab in the sidebar\n" +
"- Click on `Edit` button and change the `DISTRIBUTION STATUS` of your app to `Sharing`.\n" +
"- Fill in the required vendor and security details in the same window\n" +
"- Once you've completed the required details, click the **Save Changes** button\n" +
"Your app is now public, and users will no longer see the warning message.\n",
},
];

export const AtlassianOAuthApp = {
Expand Down

0 comments on commit f68ac68

Please sign in to comment.