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

Added share functionality to cipher add-edit component (#758)

This commit is contained in:
Cory
2018-10-23 06:25:44 -07:00
committed by Kyle Spearrin
parent 22f887a81d
commit ce7930bcc4
7 changed files with 219 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ import { SyncComponent } from './settings/sync.component';
import { TabsComponent } from './tabs.component';
import { AddEditComponent } from './vault/add-edit.component';
import { AttachmentsComponent } from './vault/attachments.component';
import { ShareComponent } from './vault/share.component';
import { CiphersComponent } from './vault/ciphers.component';
import { CurrentTabComponent } from './vault/current-tab.component';
import { GroupingsComponent } from './vault/groupings.component';
@@ -123,6 +124,12 @@ const routes: Routes = [
canActivate: [AuthGuardService],
data: { state: 'edit-cipher' },
},
{
path: 'share',
component: ShareComponent,
canActivate: [AuthGuardService],
data: { state: 'share' },
},
{
path: 'attachments',
component: AttachmentsComponent,