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

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

export const pingUsage = ({ rootGetters }) => {
  const { web_url: projectUrl } = rootGetters.currentProject;

  const url = `${projectUrl}/usage_ping/web_ide_clientside_preview`;

  return axios.post(url);
};

export default pingUsage;