Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MM-987]: Added setup and webhook command to system admin help text #1125

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion server/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ const commonHelpText = "\n" +
""

const sysAdminHelpText = "\n###### For System Administrators:\n" +
"Setup Jira plugin\n" +
"* `/jira setup` - Start Jira plugin setup flow\n" +
"* `/jira webhook [jiraURL]` - Display the webhook URLs to setup on Jira\n" +
"Install Jira instances:\n" +
"* `/jira instance install server [jiraURL]` - Connect Mattermost to a Jira Server or Data Center instance located at <jiraURL>\n" +
"* `/jira instance install cloud-oauth [jiraURL]` - Connect Mattermost to a Jira Cloud instance using OAuth 2.0 located at <jiraURL>\n" +
Expand All @@ -94,7 +97,6 @@ const sysAdminHelpText = "\n###### For System Administrators:\n" +
"* `/jira instance alias [URL] [alias-name]` - assign an alias to an instance\n" +
"* `/jira instance unalias [alias-name]` - remve an alias from an instance\n" +
"* `/jira instance v2 <jiraURL>` - Set the Jira instance to process \"v2\" webhooks and subscriptions (not prefixed with the instance ID)\n" +
"* `/jira webhook [--instance=<jiraURL>]` - Show the Mattermost webhook to receive JQL queries\n" +
raghavaggarwal2308 marked this conversation as resolved.
Show resolved Hide resolved
"* `/jira v2revert ` - Revert to V2 jira plugin data model\n" +
""

Expand Down
Loading