mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/unity.git
synced 2026-08-19 04:13:58 +00:00
remove
This commit is contained in:
Vendored
+31
@@ -5,6 +5,11 @@ Vue.use(Router);
|
||||
import Logins from './pages/logins/Index';
|
||||
import Dashboards from './pages/dashboards/Index';
|
||||
import UserProfile from './pages/users/Profile';
|
||||
|
||||
import ContractList from './pages/contracts/List';
|
||||
import ContractCreate from './pages/contracts/Create';
|
||||
import ContractEdit from './pages/contracts/Edit';
|
||||
|
||||
import PageNotFound from './pages/page-not-founds/Index';
|
||||
|
||||
let router = new Router({
|
||||
@@ -36,6 +41,32 @@ let router = new Router({
|
||||
component: Dashboards
|
||||
},
|
||||
/////////////////////////////////////////////////////
|
||||
// Contract
|
||||
{
|
||||
path: '/contract/list',
|
||||
name: 'Contract List',
|
||||
meta: {
|
||||
auth: true
|
||||
},
|
||||
component: ContractList
|
||||
},
|
||||
{
|
||||
path: '/contract/create',
|
||||
name: 'Contract Create',
|
||||
meta: {
|
||||
auth: true
|
||||
},
|
||||
component: ContractCreate
|
||||
},
|
||||
{
|
||||
path: '/contract/edit/:hash_id',
|
||||
name: 'Contract Edit',
|
||||
meta: {
|
||||
auth: true
|
||||
},
|
||||
component: ContractEdit
|
||||
},
|
||||
/////////////////////////////////////////////////////
|
||||
// User
|
||||
{
|
||||
path: '/user/profile/update',
|
||||
|
||||
Reference in New Issue
Block a user