Skip to content

Commit

Permalink
Undo changes to vault code to reduce codeowners
Browse files Browse the repository at this point in the history
  • Loading branch information
eliykat committed Sep 29, 2023
1 parent 6c67ba2 commit 2009ae4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ import { FormFieldModule } from "@bitwarden/components";

import { OrganizationCreateModule } from "../../admin-console/organizations/create/organization-create.module";
import { RegisterFormModule } from "../../auth/register-form/register-form.module";
import { PaymentComponent, TaxInfoComponent } from "../../billing";
import { BillingComponent } from "../../billing/accounts/trial-initiation/billing.component";
import { EnvironmentSelectorModule } from "../../components/environment-selector/environment-selector.module";
import { SharedModule } from "../../shared";
import { LooseComponentsModule, SharedModule } from "../../shared";

import { ConfirmationDetailsComponent } from "./confirmation-details.component";
import { AbmEnterpriseContentComponent } from "./content/abm-enterprise-content.component";
Expand Down Expand Up @@ -38,9 +37,8 @@ import { VerticalStepperModule } from "./vertical-stepper/vertical-stepper.modul
FormFieldModule,
RegisterFormModule,
OrganizationCreateModule,
LooseComponentsModule,
EnvironmentSelectorModule,
PaymentComponent,
TaxInfoComponent,
],
declarations: [
TrialInitiationComponent,
Expand Down
11 changes: 11 additions & 0 deletions apps/web/src/app/shared/loose-components.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ import { UpdatePasswordComponent } from "../auth/update-password.component";
import { UpdateTempPasswordComponent } from "../auth/update-temp-password.component";
import { VerifyEmailTokenComponent } from "../auth/verify-email-token.component";
import { VerifyRecoverDeleteComponent } from "../auth/verify-recover-delete.component";
import { BillingSharedModule } from "../billing/shared";
import { DynamicAvatarComponent } from "../components/dynamic-avatar.component";
import { SelectableAvatarComponent } from "../components/selectable-avatar.component";
import { FooterComponent } from "../layouts/footer.component";
Expand Down Expand Up @@ -107,6 +108,11 @@ import { SharedModule } from "./shared.module";
EnvironmentSelectorModule,
AccountFingerprintComponent,
PasswordCalloutComponent,

// Temporary export to be removed in AC-1453
// Import PaymentComponent and TaxInfoComponent directly into TrialIniationComponent
// and remove BillingSharedModule here
BillingSharedModule,
],
declarations: [
AcceptEmergencyComponent,
Expand Down Expand Up @@ -279,6 +285,11 @@ import { SharedModule } from "./shared.module";
VerifyEmailTokenComponent,
VerifyRecoverDeleteComponent,
LowKdfComponent,

// Temporary export to be removed in AC-1453
// Import PaymentComponent and TaxInfoComponent directly into TrialIniationComponent
// and remove BillingSharedModule here
BillingSharedModule,
],
})
export class LooseComponentsModule {}

0 comments on commit 2009ae4

Please sign in to comment.