summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/jira_connect/api.js
blob: abf2c070e68fb7e7b64a260169cecf54be7b1514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import axios from 'axios';
import { getJwt } from '~/jira_connect/utils';

export const addSubscription = async (addPath, namespace) => {
  const jwt = await getJwt();

  return axios.post(addPath, {
    jwt,
    namespace_path: namespace,
  });
};

export const removeSubscription = async (removePath) => {
  const jwt = await getJwt();

  return axios.delete(removePath, {
    params: {
      jwt,
    },
  });
};

export const fetchGroups = async (groupsPath, { page, perPage, search }) => {
  return axios.get(groupsPath, {
    params: {
      page,
      per_page: perPage,
      search,
    },
  });
};