Removed redundant code and started abiliyt for customer entry
This commit is contained in:
parent
ccb743ec43
commit
52fbda7157
8 changed files with 1044 additions and 509 deletions
|
@ -4,7 +4,6 @@ import { Routes, RouterModule } from '@angular/router';
|
|||
import { AuthGuard } from '../_guards/auth.guard';
|
||||
|
||||
import { DashboardComponent } from './dashboard.component';
|
||||
import { LeaderboardsComponent } from './leaderboards.component';
|
||||
import { FullLayoutComponent } from '../layouts/full-layout.component';
|
||||
import { AccountEditComponent } from './account-edit.component';
|
||||
import { AddDataComponent } from './add-data.component';
|
||||
|
@ -22,11 +21,6 @@ const routes: Routes = [
|
|||
component: DashboardComponent,
|
||||
data: { title: 'Dashboard' },
|
||||
},
|
||||
{
|
||||
path: 'leaderboards',
|
||||
component: LeaderboardsComponent,
|
||||
data: { title: 'Leaderboards' },
|
||||
},
|
||||
{
|
||||
path: 'account-edit',
|
||||
component: AccountEditComponent,
|
||||
|
|
Reference in a new issue