1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00

more tab with about and logout

This commit is contained in:
Kyle Spearrin
2018-05-02 14:26:33 -04:00
parent f8ae050556
commit da73fcd973
7 changed files with 83 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ import { LaunchGuardService } from './services/launch-guard.service';
import { LoginComponent } from './accounts/login.component';
import { TwoFactorComponent } from './accounts/two-factor.component';
import { DashboardComponent } from './tabs/dashboard.component';
import { MoreComponent } from './tabs/more.component';
import { SettingsComponent } from './tabs/settings.component';
import { TabsComponent } from './tabs/tabs.component';
@@ -40,6 +41,11 @@ const routes: Routes = [
component: SettingsComponent,
canActivate: [AuthGuardService],
},
{
path: 'more',
component: MoreComponent,
canActivate: [AuthGuardService],
},
],
},
];