Skip to content
This repository has been archived by the owner on May 23, 2022. It is now read-only.

Commit

Permalink
Bugfixes Cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkLegend committed Feb 24, 2017
1 parent 4a4cc99 commit 04ba0b0
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 21 deletions.
75 changes: 75 additions & 0 deletions addon/cloud/atlassian-connect-staging.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"name": "Outlook App for JIRA Cloud",
"description": "JIRA for Outlook 2010, 2013 and 2016. Outlook app can be downloaded on the configuration page after the initial setup.",
"key": "com.yasoon.jira.cloud",
"baseUrl": "https://store.yasoon.org",
"vendor": {
"name": "yasoon",
"url": "http://jira.yasoon.com"
},
"authentication": {
"type": "jwt"
},
"lifecycle": {
"installed": "/jira/install",
"uninstalled": "/jira/install",
"enabled": "/jira/install",
"disabled": "/jira/install"
},
"scopes": [
"read",
"write"
],
"modules": {
"webSections": [
{
"key": "yasoonoutlookapp",
"location": "admin_plugins_menu",
"name": {
"value": "Outlook App"
}
}
],
"adminPages": [
{
"url": "/jira/v1/wrapper.html",
"key": "admin",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "General Overview"
}
},
{
"url": "/jira/v1/wrapper.html",
"key": "settings",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "Outlook Settings"
}
},
{
"url": "/jira/v1/wrapper.html",
"key": "templates",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "Issue Templates"
}
}
],
"configurePage": {
"url": "/jira/v1/wrapper.html",
"key": "configure",
"name": {
"value": "Configure Outlook App"
}
},
"postInstallPage": {
"url": "/jira/v1/wrapper.html",
"key": "postInstall",
"name": {
"value": "Configure Outlook App"
}
}
},
"enableLicensing": true
}
29 changes: 10 additions & 19 deletions addon/cloud/atlassian-connect.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Outlook App for JIRA Cloud",
"description": "JIRA for Outlook 2010, 2013 and 2016. Outlook app can be downloaded on the configuration page after the initial setup.",
"key": "com.yasoon.jira.cloud",
"baseUrl": "https://store.yasoon.com/jira",
"baseUrl": "https://store.yasoon.com",
"vendor": {
"name": "yasoon",
"url": "http://jira.yasoon.com"
Expand All @@ -11,10 +11,10 @@
"type": "jwt"
},
"lifecycle": {
"installed": "/install",
"uninstalled": "/install",
"enabled": "/install",
"disabled": "/install"
"installed": "/jira/install",
"uninstalled": "/jira/install",
"enabled": "/jira/install",
"disabled": "/jira/install"
},
"scopes": [
"read",
Expand All @@ -32,48 +32,39 @@
],
"adminPages": [
{
"url": "/wrapper.html",
"url": "/jira/v1/wrapper.html",
"key": "admin",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "General Overview"
}
},
{
"url": "/wrapper.html",
"url": "/jira/v1/wrapper.html",
"key": "settings",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "Outlook Settings"
}
},
{
"url": "/wrapper.html",
"url": "/jira/v1/wrapper.html",
"key": "templates",
"location": "admin_plugins_menu/yasoonoutlookapp",
"name": {
"value": "Issue Templates"
}
}
],
"generalPages": [
{
"url": "/user.html",
"key": "user",
"name": {
"value": "Outlook App"
}
}
],
"configurePage": {
"url": "/wrapper.html",
"url": "/jira/v1/wrapper.html",
"key": "configure",
"name": {
"value": "Configure Outlook App"
}
},
"postInstallPage": {
"url": "/wrapper.html",
"url": "/jira/v1/wrapper.html",
"key": "postInstall",
"name": {
"value": "Configure Outlook App"
Expand Down
1 change: 0 additions & 1 deletion addon/shared/js/admin.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions addon/shared/js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ var systemInfo = {};
var serverId = null;
var jwtToken = '';
var sen = '';
var currentPage = 1;

Promise.config({
// Enable cancellation.
Expand Down
2 changes: 1 addition & 1 deletion build_addon.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
node build_onpremise.js
node build_cloud.js

robocopy addon\distribution\cloud ..\yasoonNodeBackend\assets\jira /S
robocopy addon\distribution\cloud ..\yasoonNodeBackend\assets\jira\v1 /S

cd addon\distribution\onpremise
atlas-package

0 comments on commit 04ba0b0

Please sign in to comment.