summaryrefslogtreecommitdiff
path: root/src/api/rules.js
blob: 574de9634bdab9869bd3b015508417efa9cef848 (plain)
1
2
3
4
5
6
7
8
import { getURLAndInit } from '../misc/request-helper';

const endpoint = '/rules';

export async function fetchRules(apiConfig) {
  const { url, init } = getURLAndInit(apiConfig);
  return await fetch(url + endpoint, init);
}