1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/client/src/constants/Paths.js

16 lines
330 B
JavaScript
Raw Normal View History

import Config from './Config';
const ROOT = `${Config.BASE_PATH}/`;
const LOGIN = `${Config.BASE_PATH}/login`;
const PROJECTS = `${Config.BASE_PATH}/projects/:id`;
const BOARDS = `${Config.BASE_PATH}/boards/:id`;
const CARDS = `${Config.BASE_PATH}/cards/:id`;
2019-08-31 04:07:25 +05:00
export default {
ROOT,
LOGIN,
PROJECTS,
BOARDS,
CARDS,
};