1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

updated dates and password history

This commit is contained in:
Kyle Spearrin
2018-07-30 10:54:38 -04:00
parent 6db7804a3b
commit 8737f76edc
9 changed files with 121 additions and 5 deletions

View File

@@ -32,6 +32,7 @@ import { AttachmentsComponent } from './vault/attachments.component';
import { CiphersComponent } from './vault/ciphers.component';
import { CurrentTabComponent } from './vault/current-tab.component';
import { GroupingsComponent } from './vault/groupings.component';
import { PasswordHistoryComponent } from './vault/password-history.component';
import { ViewComponent } from './vault/view.component';
const routes: Routes = [
@@ -104,6 +105,12 @@ const routes: Routes = [
canActivate: [AuthGuardService],
data: { state: 'view-cipher' },
},
{
path: 'cipher-password-history',
component: PasswordHistoryComponent,
canActivate: [AuthGuardService],
data: { state: 'cipher-password-history' },
},
{
path: 'add-cipher',
component: AddEditComponent,