move org vault stuff into subfolder
This commit is contained in:
parent
1a51a7bf5b
commit
9d4e0849d6
|
@ -14,7 +14,7 @@ import { LoginComponent } from './accounts/login.component';
|
||||||
import { RegisterComponent } from './accounts/register.component';
|
import { RegisterComponent } from './accounts/register.component';
|
||||||
import { TwoFactorComponent } from './accounts/two-factor.component';
|
import { TwoFactorComponent } from './accounts/two-factor.component';
|
||||||
|
|
||||||
import { VaultComponent as OrganizationVaultComponent } from './organizations/vault.component';
|
import { VaultComponent as OrganizationVaultComponent } from './organizations/vault/vault.component';
|
||||||
|
|
||||||
import { AccountComponent } from './settings/account.component';
|
import { AccountComponent } from './settings/account.component';
|
||||||
import { CreateOrganizationComponent } from './settings/create-organization.component';
|
import { CreateOrganizationComponent } from './settings/create-organization.component';
|
||||||
|
|
|
@ -32,12 +32,12 @@ import { RegisterComponent } from './accounts/register.component';
|
||||||
import { TwoFactorOptionsComponent } from './accounts/two-factor-options.component';
|
import { TwoFactorOptionsComponent } from './accounts/two-factor-options.component';
|
||||||
import { TwoFactorComponent } from './accounts/two-factor.component';
|
import { TwoFactorComponent } from './accounts/two-factor.component';
|
||||||
|
|
||||||
import { AddEditComponent as OrgAddEditComponent } from './organizations/add-edit.component';
|
import { AddEditComponent as OrgAddEditComponent } from './organizations/vault/add-edit.component';
|
||||||
import { AttachmentsComponent as OrgAttachmentsComponent } from './organizations/attachments.component';
|
import { AttachmentsComponent as OrgAttachmentsComponent } from './organizations/vault/attachments.component';
|
||||||
import { CiphersComponent as OrgCiphersComponent } from './organizations/ciphers.component';
|
import { CiphersComponent as OrgCiphersComponent } from './organizations/vault/ciphers.component';
|
||||||
import { CollectionsComponent as OrgCollectionsComponent } from './organizations/collections.component';
|
import { CollectionsComponent as OrgCollectionsComponent } from './organizations/vault/collections.component';
|
||||||
import { GroupingsComponent as OrgGroupingsComponent } from './organizations/groupings.component';
|
import { GroupingsComponent as OrgGroupingsComponent } from './organizations/vault/groupings.component';
|
||||||
import { VaultComponent as OrgVaultComponent } from './organizations/vault.component';
|
import { VaultComponent as OrgVaultComponent } from './organizations/vault/vault.component';
|
||||||
|
|
||||||
import { AccountComponent } from './settings/account.component';
|
import { AccountComponent } from './settings/account.component';
|
||||||
import { AdjustPaymentComponent } from './settings/adjust-payment.component';
|
import { AdjustPaymentComponent } from './settings/adjust-payment.component';
|
||||||
|
|
|
@ -22,11 +22,11 @@ import { Cipher } from 'jslib/models/domain/cipher';
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
import { CipherRequest } from 'jslib/models/request/cipherRequest';
|
import { CipherRequest } from 'jslib/models/request/cipherRequest';
|
||||||
|
|
||||||
import { AddEditComponent as BaseAddEditComponent } from '../vault/add-edit.component';
|
import { AddEditComponent as BaseAddEditComponent } from '../../vault/add-edit.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-vault-add-edit',
|
selector: 'app-org-vault-add-edit',
|
||||||
templateUrl: '../vault/add-edit.component.html',
|
templateUrl: '../../vault/add-edit.component.html',
|
||||||
})
|
})
|
||||||
export class AddEditComponent extends BaseAddEditComponent implements OnInit {
|
export class AddEditComponent extends BaseAddEditComponent implements OnInit {
|
||||||
organization: Organization;
|
organization: Organization;
|
|
@ -14,11 +14,11 @@ import { CipherData } from 'jslib/models/data/cipherData';
|
||||||
import { Cipher } from 'jslib/models/domain/cipher';
|
import { Cipher } from 'jslib/models/domain/cipher';
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
|
|
||||||
import { AttachmentsComponent as BaseAttachmentsComponent } from '../vault/attachments.component';
|
import { AttachmentsComponent as BaseAttachmentsComponent } from '../../vault/attachments.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-vault-attachments',
|
selector: 'app-org-vault-attachments',
|
||||||
templateUrl: '../vault/attachments.component.html',
|
templateUrl: '../../vault/attachments.component.html',
|
||||||
})
|
})
|
||||||
export class AttachmentsComponent extends BaseAttachmentsComponent {
|
export class AttachmentsComponent extends BaseAttachmentsComponent {
|
||||||
organization: Organization;
|
organization: Organization;
|
|
@ -13,11 +13,11 @@ import { Cipher } from 'jslib/models/domain/cipher';
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
import { CipherView } from 'jslib/models/view/cipherView';
|
import { CipherView } from 'jslib/models/view/cipherView';
|
||||||
|
|
||||||
import { CiphersComponent as BaseCiphersComponent } from '../vault/ciphers.component';
|
import { CiphersComponent as BaseCiphersComponent } from '../../vault/ciphers.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-vault-ciphers',
|
selector: 'app-org-vault-ciphers',
|
||||||
templateUrl: '../vault/ciphers.component.html',
|
templateUrl: '../../vault/ciphers.component.html',
|
||||||
})
|
})
|
||||||
export class CiphersComponent extends BaseCiphersComponent {
|
export class CiphersComponent extends BaseCiphersComponent {
|
||||||
organization: Organization;
|
organization: Organization;
|
|
@ -13,11 +13,11 @@ import { Cipher } from 'jslib/models/domain/cipher';
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
import { CipherCollectionsRequest } from 'jslib/models/request/cipherCollectionsRequest';
|
import { CipherCollectionsRequest } from 'jslib/models/request/cipherCollectionsRequest';
|
||||||
|
|
||||||
import { CollectionsComponent as BaseCollectionsComponent } from '../vault/collections.component';
|
import { CollectionsComponent as BaseCollectionsComponent } from '../../vault/collections.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-vault-collections',
|
selector: 'app-org-vault-collections',
|
||||||
templateUrl: '../vault/collections.component.html',
|
templateUrl: '../../vault/collections.component.html',
|
||||||
})
|
})
|
||||||
export class CollectionsComponent extends BaseCollectionsComponent {
|
export class CollectionsComponent extends BaseCollectionsComponent {
|
||||||
organization: Organization;
|
organization: Organization;
|
|
@ -10,11 +10,11 @@ import { Collection } from 'jslib/models/domain/collection';
|
||||||
import { Organization } from 'jslib/models/domain/organization';
|
import { Organization } from 'jslib/models/domain/organization';
|
||||||
import { CollectionView } from 'jslib/models/view/collectionView';
|
import { CollectionView } from 'jslib/models/view/collectionView';
|
||||||
|
|
||||||
import { GroupingsComponent as BaseGroupingsComponent } from '../vault/groupings.component';
|
import { GroupingsComponent as BaseGroupingsComponent } from '../../vault/groupings.component';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-org-vault-groupings',
|
selector: 'app-org-vault-groupings',
|
||||||
templateUrl: '../vault/groupings.component.html',
|
templateUrl: '../../vault/groupings.component.html',
|
||||||
})
|
})
|
||||||
export class GroupingsComponent extends BaseGroupingsComponent {
|
export class GroupingsComponent extends BaseGroupingsComponent {
|
||||||
organization: Organization;
|
organization: Organization;
|
|
@ -20,7 +20,7 @@ import { CipherView } from 'jslib/models/view/cipherView';
|
||||||
|
|
||||||
import { CipherType } from 'jslib/enums/cipherType';
|
import { CipherType } from 'jslib/enums/cipherType';
|
||||||
|
|
||||||
import { ModalComponent } from '../modal.component';
|
import { ModalComponent } from '../../modal.component';
|
||||||
|
|
||||||
import { AddEditComponent } from './add-edit.component';
|
import { AddEditComponent } from './add-edit.component';
|
||||||
import { AttachmentsComponent } from './attachments.component';
|
import { AttachmentsComponent } from './attachments.component';
|
Loading…
Reference in New Issue