35 lines
712 B
TypeScript
35 lines
712 B
TypeScript
export const Paths = {
|
|
requests: {
|
|
list: '/requests',
|
|
},
|
|
product: {
|
|
list: '/product/list',
|
|
create: '/product/create'
|
|
},
|
|
order: {
|
|
list: '/order/list'
|
|
},
|
|
features: {
|
|
list: '/features/list',
|
|
create: '/features/create'
|
|
},
|
|
service: {
|
|
print: '/service/print'
|
|
},
|
|
home: '/home',
|
|
myOrders: '/my-orders',
|
|
proformaInvoice: '/proforma-invoice',
|
|
newOrder: '/new-order',
|
|
orderDetails: '/order/',
|
|
tickets: {
|
|
list: '/tickets',
|
|
},
|
|
announcement: {
|
|
list: '/announcement',
|
|
},
|
|
criticisms: '/criticisms',
|
|
learning: '/learning',
|
|
auth: {
|
|
login: '/auth/login',
|
|
},
|
|
} |