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

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

export default {
  getSentryData({ endpoint, params }) {
    return axios.get(endpoint, { params });
  },
  updateErrorStatus(endpoint, status) {
    return axios.put(endpoint, { status });
  },
};