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

18 lines
406 B
JavaScript
Raw Normal View History

import Config from './Config';
const ROOT = `${Config.BASE_PATH}/`;
const LOGIN = `${Config.BASE_PATH}/login`;
2023-10-17 19:18:19 +02:00
const OIDC_CALLBACK = `${Config.BASE_PATH}/oidc-callback`;
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,
2023-10-17 19:18:19 +02:00
OIDC_CALLBACK,
2019-08-31 04:07:25 +05:00
PROJECTS,
BOARDS,
CARDS,
};