25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
export const paths = {
|
|
home: '/',
|
|
auth: {signIn: '/auth/sign-in', bot: 'https://t.me/kayashovBarClientBot', tg: '/tg'},
|
|
dashboard: {
|
|
overview: '/menu'
|
|
},
|
|
visitor: {
|
|
inBar: "/visitors"
|
|
},
|
|
orders: {
|
|
my: '/orders'
|
|
},
|
|
bar: {
|
|
list: "/barList",
|
|
ordersQueue: '/queue',
|
|
ingredients: '/ingredients',
|
|
cocktails: "/cocktails",
|
|
ingredientEdit: '/ingredients/edit',
|
|
cocktailEdit: '/cocktail/edit',
|
|
menu: '/menuList',
|
|
calc: '/calc',
|
|
},
|
|
errors: {notFound: '/errors/not-found'},
|
|
notFound: '*',
|
|
}; |