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

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

export default {
  getAlertManagementList({ endpoint }) {
    return axios.get(endpoint);
  },
};