From f119fc78dda4d1e828dde04f378a63a93e3a0a7e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Thu, 2 Jul 2020 18:39:28 +0200 Subject: Add current progress on frontend port --- frontend/src/api/routes/paths.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 frontend/src/api/routes/paths.js (limited to 'frontend/src/api/routes/paths.js') diff --git a/frontend/src/api/routes/paths.js b/frontend/src/api/routes/paths.js deleted file mode 100644 index 74811ab2..00000000 --- a/frontend/src/api/routes/paths.js +++ /dev/null @@ -1,30 +0,0 @@ -import { sendRequest } from '../index' -import { getById } from './util' - -export function getPath(pathId) { - return getById('/paths/{pathId}', { pathId }) -} - -export function getBranchesOfPath(pathId) { - return getById('/paths/{pathId}/branches', { pathId }) -} - -export function branchFromPath(pathId, section) { - return sendRequest({ - path: '/paths/{pathId}/branches', - method: 'POST', - parameters: { - body: { - section, - }, - path: { - pathId, - }, - query: {}, - }, - }) -} - -export function getSectionsOfPath(pathId) { - return getById('/paths/{pathId}/sections', { pathId }) -} -- cgit v1.2.3