Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/jira_connect.js')
-rw-r--r--app/assets/javascripts/jira_connect.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/app/assets/javascripts/jira_connect.js b/app/assets/javascripts/jira_connect.js
deleted file mode 100644
index 0864a3024ac..00000000000
--- a/app/assets/javascripts/jira_connect.js
+++ /dev/null
@@ -1,63 +0,0 @@
-/* eslint-disable func-names, no-var, no-alert */
-/* global $ */
-/* global AP */
-
-/**
- * This script is not going through Webpack bundling
- * as it is only included in `app/views/jira_connect/subscriptions/index.html.haml`
- * which is going to be rendered within iframe on Jira app dashboard
- * hence any code written here needs to be IE11+ compatible (no fully ES6)
- */
-
-function onLoaded() {
- var reqComplete = function() {
- AP.navigator.reload();
- };
-
- var reqFailed = function(res) {
- alert(res.responseJSON.error);
- };
-
- AP.getLocation(function(location) {
- $('.js-jira-connect-sign-in').each(function() {
- var updatedLink = `${$(this).attr('href')}?return_to=${location}`;
- $(this).attr('href', updatedLink);
- });
- });
-
- $('#add-subscription-form').on('submit', function(e) {
- var actionUrl = $(this).attr('action');
- e.preventDefault();
-
- AP.context.getToken(function(token) {
- // eslint-disable-next-line no-jquery/no-ajax
- $.post(actionUrl, {
- jwt: token,
- namespace_path: $('#namespace-input').val(),
- format: 'json',
- })
- .done(reqComplete)
- .fail(reqFailed);
- });
- });
-
- $('.remove-subscription').on('click', function(e) {
- var href = $(this).attr('href');
- e.preventDefault();
-
- AP.context.getToken(function(token) {
- // eslint-disable-next-line no-jquery/no-ajax
- $.ajax({
- url: href,
- method: 'DELETE',
- data: {
- jwt: token,
- format: 'json',
- },
- })
- .done(reqComplete)
- .fail(reqFailed);
- });
- });
-}
-document.addEventListener('DOMContentLoaded', onLoaded);