forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#[UIC-1854] jira actions configurable from deployment and chart creat…
…ion screen (#234) * fix(jira-ticket): Jira actions * fix(explore on token expiry): redirect to welcome screen UIC-1956 #time 3h debug and redirect * feat(jira-ticket-interface): Jira actions payload from slice with correct interface UIC-1994 #time 1h Jira actions payload from slice with correct interface * feat(jira-ticket-interface): default formatted text UIC-1994 #time 1h default formatted text * feat(jira-ticket-interface): docker variable + anonymous request support UIC-1994 #time 1h docker variable + anonymous request support * feat(jira-ticket-interface): error handling and validation check around not configured ticket system UIC-1994 #time 2h error handling and validation check around not configured ticket system * feat(jira-ticket-interface): removed warning * feat(jira-ticket-interface): added disabled erase in text UIC-1994: #time 1h
- Loading branch information
1 parent
50c4e7f
commit 544dc2e
Showing
12 changed files
with
136 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"fields": { | ||
"project": { | ||
"key": "MD" | ||
}, | ||
"summary": "[%dashboard_title%/%chart_title%: %time%] Issue raised using RVF", | ||
"description": "*An issue has been raised by following dashboard* \n {quote} Dashboard Name: *%dashboard_title%* \n Chart Name: *%chart_title%* \n The dashboard access link is available [here|%dashboard_url%] \n RVF User: %username%{quote}\n *The chart has following selection at the time of incident*\n {quote}Chart Selection: %chart_selection%.{quote}\n {code:sql| title=Chart Query}%chart_query%{code}" , | ||
"issuetype": { | ||
"name": "Task" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,6 +113,11 @@ | |
|
||
APPLICATION_PREFIX = '' | ||
|
||
TICKET_GENERATION_SYSTEM_NAME = 'JIRA' | ||
#TICKET_GENERATION_SYSTEM_ENDPOINT = 'https://guavus-jira.atlassian.net/rest/api/2/issue/' | ||
TICKET_GENERATION_SYSTEM_ENDPOINT = '' | ||
TICKET_GENERATION_SYSTEM_API_KEY = 'vOzAgEbwDDQEhqb2idle73FF' | ||
TICKET_GENERATION_SYSTEM_USER ='[email protected]' | ||
# Use this flag to enable/disable walkme | ||
WALKME_ENABLED = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters