mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* Rename vault folder to org-vault * Move org-vault folder to vault * Rename nested vault folder to individual-vault * Fix vault module imports * Undo desktop imports * Remove extra app folder * Add @bitwarden/team-vault-dev code owners * Update .github/CODEOWNERS Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * Remove eslint ignore comments --------- Co-authored-by: Matt Gibson <mgibson@bitwarden.com>
35 lines
1.3 KiB
TypeScript
35 lines
1.3 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
|
|
import { BreadcrumbsModule } from "@bitwarden/components";
|
|
|
|
import { LooseComponentsModule, SharedModule } from "../../app/shared";
|
|
import { CollectionBadgeModule } from "../org-vault/collection-badge/collection-badge.module";
|
|
import { GroupBadgeModule } from "../org-vault/group-badge/group-badge.module";
|
|
|
|
import { BulkDialogsModule } from "./bulk-action-dialogs/bulk-dialogs.module";
|
|
import { OrganizationBadgeModule } from "./organization-badge/organization-badge.module";
|
|
import { PipesModule } from "./pipes/pipes.module";
|
|
import { VaultFilterModule } from "./vault-filter/vault-filter.module";
|
|
import { VaultHeaderComponent } from "./vault-header/vault-header.component";
|
|
import { VaultItemsComponent } from "./vault-items.component";
|
|
import { VaultRoutingModule } from "./vault-routing.module";
|
|
import { VaultComponent } from "./vault.component";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
VaultFilterModule,
|
|
VaultRoutingModule,
|
|
OrganizationBadgeModule,
|
|
GroupBadgeModule,
|
|
CollectionBadgeModule,
|
|
PipesModule,
|
|
SharedModule,
|
|
LooseComponentsModule,
|
|
BulkDialogsModule,
|
|
BreadcrumbsModule,
|
|
],
|
|
declarations: [VaultComponent, VaultItemsComponent, VaultHeaderComponent],
|
|
exports: [VaultComponent],
|
|
})
|
|
export class VaultModule {}
|