21 lines
412 B
JavaScript
Executable File
21 lines
412 B
JavaScript
Executable File
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
const ROOT = '/';
|
|
const LOGIN = '/login';
|
|
const OIDC_CALLBACK = '/oidc-callback';
|
|
const PROJECTS = '/projects/:id';
|
|
const BOARDS = '/boards/:id';
|
|
const CARDS = '/cards/:id';
|
|
|
|
export default {
|
|
ROOT,
|
|
LOGIN,
|
|
OIDC_CALLBACK,
|
|
PROJECTS,
|
|
BOARDS,
|
|
CARDS,
|
|
};
|