Project

General

Profile

PageId » History » Revision 4

Revision 3 (karnake ruengchaicharnkij, 04/08/2026 03:21 AM) → Revision 4/7 (karnake ruengchaicharnkij, 04/08/2026 03:24 AM)

# PageId 
 {{collapse(URL Config details...) 

 ``` javascript 
 export const urlConfig: TUrlConfig[] = [ 
   { 
     header: "System Management", 
     icon: "icon", 
     pages: [1000, 1011], 
     children: [ 
       { 
         label: "Admin account", 
         href: "/system-management/added-admin-user", 
         pageId: 1001, 
       }, 
       { 
         label: "Audit Log", 
         href: `/system-management/${ROUTES.SYSTEM_MANAGEMENT.AUDIT_LOG}`, 
         pageId: 1002, 
       }, 
       { 
         label: "Activity Log", 
         href: `/system-management/${ROUTES.SYSTEM_MANAGEMENT.ACTIVITY_LOG}`, 
         pageId: 1003, 
       } 
     ], 
   }, 
   { 
     header: "Customer Management", 
     icon: "icon", 
     pages: [2000, 2023], 
     children: [ 
       { 
         label: "Corporate account", 
         href: "/create-job/added-corporate-account", 
         pageId: 2002, 
       }, 
       { 
         label: "Edit corporate account", 
         href: "/create-job/change-corporate-account", 
         pageId: 2005, 
       }, 
       { 
         label: "Create Individual", 
         // label: "individual account", 
         href: "/create-job/added-individual-account", 
         pageId: 2001, 
       }, 
       { 
         label: "Edit Individual", 
         // label: "edit individual account", 
         href: "/create-job/change-individual-account", 
         pageId: 2004, 
       }, 
       { 
         label: "Create Issuer", 
         href: "/create-job/issuer-info", 
         pageId: 2011, 
       }, 
       { 
         label: "Edit Issuer", 
         href: "/create-job/list-issuer-info", 
         pageId: 2012, 
       }, 
       { 
         label: "Create ICO", 
         href: "/create-job/added-ico", 
         pageId: 2003, 
       }, 
       { 
         label: "Edit ICO", 
         href: "/create-job/change-ico", 
         pageId: 2006, 
       }, 
       { 
         label: "Create Transactions", 
         href: "/create-job/ico-list", 
         pageId: 2009, 
       }, 
       { 
         label: "Edit Transactions", 
         href: "/create-job/edit-ico-order", 
         pageId: 2010, 
       }, 
       { 
         label: "Create Deposit", 
         href: "/create-job/cash-deposit-withdraw", 
         pageId: 2008, 
       }, 
       { 
         label: "Edit Deposit", 
         href: "/create-job/edit-deposit", 
         pageId: 2013, 
       }, 
     ], 
   }, 
   { 
     header: "Approval", 
     icon: "icon", 
     pages: [3000, 3016], 
     children: [ 
       { 
         label: "Individuals", 
         href: "/todo-list/individual-account-opening", 
         pageId: 3001, 
       }, 
       { 
         label: "corporate account", 
         href: "/todo-list/corporate-account-opening", 
         pageId: 3002, 
       }, 
       { 
         label: "ICOs", 
         href: "/todo-list/added-ico", 
         pageId: 3003, 
       }, 
       { 
         label: "Cash Deposit", 
         href: "/todo-list/cash-deposit-withdraw", 
         pageId: 3004, 
       }, 
       { 
         label: "Lock / Unlock", 
         href: "/todo-list/account-lockunlock", 
         pageId: 3005, 
       }, 
       { 
         label: "Transactions", 
         href: "/todo-list/ico-list", 
         pageId: 3006, 
       }, 
       { 
         label: "Review KYC", 
         href: "/todo-list/review-kyc", 
         pageId: 3007, 
       }, 
       { 
         label: "Registrar", 
         href: `/todo-list/${ROUTES.TODO_LIST.REGISTRAR}`, 
         pageId: 3008, 
       }, 
       { 
         label: "Marketplace Fee", 
         href: `/todo-list/${ROUTES.TODO_LIST.MARKET_PLACE_CONFIRM_FEE}`, 
         pageId: 3009, 
       }, 
       { 
         label: "Distribution", 
         href: `/todo-list/${ROUTES.TODO_LIST.DISTRIBUTION}`, 
         pageId: 3010, 
       } 
     ], 
   }, 
   { 
     header: "Enquiry", 
     icon: "icon", 
     pages: [4000, 4008], 
     children: [ 
       { 
         label: "Admins", 
         href: "/enquiry/admins", 
         pageId: 4001, 
       }, 
       { 
         label: "Transactions", 
         href: "/enquiry/transactions", 
         pageId: 4002, 
       }, 
       { 
         label: "Individuals", 
         href: "/enquiry/individual", 
         pageId: 4003, 
       }, 
       { 
         label: "ICOs", 
         href: "/enquiry/ico-campaign", 
         pageId: 4004, 
       }, 
       { 
         label: "Investment Transaction", 
         href: "/enquiry/ico-campaign-investment", 
         pageId: 4005, 
       }, 
       { 
         label: "Registrar", 
         href: "/enquiry/registrar", 
         pageId: 4007, 
       }, 
     ], 
   }, 
   { 
     header: "Reports", 
     icon: "icon", 
     pages: [6000, 6002], 
     children: [ 
       { 
         label: "SEC Reports", 
         href: "reports/sec-reports", 
         pageId: 6001, 
       }, 
     ], 
   }, 
   { 
     header: "Notifications", 
     icon: "icon", 
     pages: [7000, 7002], 
     children: [ 
       { 
         label: "New Activity", 
         href: "board", 
         pageId: 7001, 
       }, 
     ], 
   }, 
 ]; 
 ``` 
 }} 
 ``` 
 text 
 ```