feat: add content management feature for superadmin
- Implemented API endpoint for fetching content list with filtering, sorting, and pagination. - Added DTOs for content items and tenant information. - Created frontend components for content management, including search and data table functionalities. - Updated routing to include content management page. - Enhanced the superadmin menu to navigate to the new content management section. - Included necessary styles and scripts for the new content management interface.
This commit is contained in:
@@ -139,6 +139,11 @@ const router = createRouter({
|
||||
name: 'superadmin-orders',
|
||||
component: () => import('@/views/superadmin/Orders.vue')
|
||||
},
|
||||
{
|
||||
path: '/superadmin/contents',
|
||||
name: 'superadmin-contents',
|
||||
component: () => import('@/views/superadmin/Contents.vue')
|
||||
},
|
||||
{
|
||||
path: '/superadmin/orders/:orderID',
|
||||
name: 'superadmin-order-detail',
|
||||
|
||||
Reference in New Issue
Block a user