- Implemented Invite management with creation, searching, and disabling functionalities. - Added Ledger overview for financial transactions with filtering options. - Developed Order Detail view for individual order insights and refund capabilities. - Created Orders management page with search, reset, and pagination features. - Enhanced user experience with toast notifications for actions and error handling.
12 lines
148 B
Go
12 lines
148 B
Go
package web
|
|
|
|
func (r *Routes) Path() string {
|
|
return "/v1"
|
|
}
|
|
|
|
func (r *Routes) Middlewares() []any {
|
|
return []any{
|
|
r.middlewares.UserAuth,
|
|
}
|
|
}
|