46 lines
988 B
TypeScript
46 lines
988 B
TypeScript
export const Pages = {
|
|
auth: {
|
|
login: "/auth/login",
|
|
register: "/auth/register",
|
|
forgotPassword: "/auth/forgot",
|
|
},
|
|
dashboard: "/dashboard",
|
|
services: {
|
|
manageRestaurant: "/services/manage-restaurant/",
|
|
mine: "/services",
|
|
other: "/other-service",
|
|
detail: "/services/detail/",
|
|
buy: "/other-service/buy/",
|
|
},
|
|
transactions: "/transactions",
|
|
receipts: {
|
|
index: "/receipts",
|
|
detail: "/receipts/",
|
|
factor: "/receipts/factor/",
|
|
},
|
|
ticket: {
|
|
list: "/tickets",
|
|
create: "/tickets/create",
|
|
detail: "/tickets/messages/",
|
|
},
|
|
announcement: {
|
|
list: "/announcement",
|
|
detail: "/announcement/",
|
|
},
|
|
criticisms: "/criticisms",
|
|
learning: {
|
|
list: "/learning",
|
|
detail: "/learning/detail/",
|
|
},
|
|
setting: "/setting",
|
|
wallet: "/wallet",
|
|
callback: "/payment",
|
|
profile: "/profile",
|
|
discounts: "/discounts",
|
|
financial: "/financial",
|
|
support: {
|
|
index: "/support",
|
|
info: "/support/info",
|
|
},
|
|
};
|