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

api.js « edit « integrations « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bce5604f9dbe12cbe7570289dc069d2ae0f7ea0 (plain)
1
2
3
4
5
6
7
8
9
import axios from '~/lib/utils/axios_utils';

/**
 *  Test the validity of [integrationFormData].
 * @return Promise<{ issuetypes: []String }> - issuetypes contains valid Jira issue types.
 */
export const testIntegrationSettings = (testPath, integrationFormData) => {
  return axios.put(testPath, integrationFormData);
};