Move PremiumComponent to billing ownership (#6450)
This commit is contained in:
parent
30feb60645
commit
32121dabe4
|
@ -11,8 +11,8 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl
|
||||||
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
|
import { StateService } from "@bitwarden/common/platform/abstractions/state.service";
|
||||||
import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.service.abstraction";
|
import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.service.abstraction";
|
||||||
|
|
||||||
import { PaymentComponent } from "../../billing/settings/payment.component";
|
import { PaymentComponent } from "./payment.component";
|
||||||
import { TaxInfoComponent } from "../../billing/settings/tax-info.component";
|
import { TaxInfoComponent } from "./tax-info.component";
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: "app-premium",
|
selector: "app-premium",
|
|
@ -4,7 +4,7 @@ import { RouterModule, Routes } from "@angular/router";
|
||||||
import { BillingHistoryViewComponent } from "../../billing/settings/billing-history-view.component";
|
import { BillingHistoryViewComponent } from "../../billing/settings/billing-history-view.component";
|
||||||
import { PaymentMethodComponent } from "../../billing/settings/payment-method.component";
|
import { PaymentMethodComponent } from "../../billing/settings/payment-method.component";
|
||||||
import { UserSubscriptionComponent } from "../../billing/settings/user-subscription.component";
|
import { UserSubscriptionComponent } from "../../billing/settings/user-subscription.component";
|
||||||
import { PremiumComponent } from "../../vault/settings/premium.component";
|
import { PremiumComponent } from "../settings/premium.component";
|
||||||
|
|
||||||
import { SubscriptionComponent } from "./subscription.component";
|
import { SubscriptionComponent } from "./subscription.component";
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,7 @@ import { BillingSyncKeyComponent } from "../billing/settings/billing-sync-key.co
|
||||||
import { OrganizationPlansComponent } from "../billing/settings/organization-plans.component";
|
import { OrganizationPlansComponent } from "../billing/settings/organization-plans.component";
|
||||||
import { PaymentMethodComponent } from "../billing/settings/payment-method.component";
|
import { PaymentMethodComponent } from "../billing/settings/payment-method.component";
|
||||||
import { PaymentComponent } from "../billing/settings/payment.component";
|
import { PaymentComponent } from "../billing/settings/payment.component";
|
||||||
|
import { PremiumComponent } from "../billing/settings/premium.component";
|
||||||
import { SubscriptionComponent } from "../billing/settings/subscription.component";
|
import { SubscriptionComponent } from "../billing/settings/subscription.component";
|
||||||
import { TaxInfoComponent } from "../billing/settings/tax-info.component";
|
import { TaxInfoComponent } from "../billing/settings/tax-info.component";
|
||||||
import { UserSubscriptionComponent } from "../billing/settings/user-subscription.component";
|
import { UserSubscriptionComponent } from "../billing/settings/user-subscription.component";
|
||||||
|
@ -106,7 +107,6 @@ import { ShareComponent } from "../vault/individual-vault/share.component";
|
||||||
import { AddEditComponent as OrgAddEditComponent } from "../vault/org-vault/add-edit.component";
|
import { AddEditComponent as OrgAddEditComponent } from "../vault/org-vault/add-edit.component";
|
||||||
import { AttachmentsComponent as OrgAttachmentsComponent } from "../vault/org-vault/attachments.component";
|
import { AttachmentsComponent as OrgAttachmentsComponent } from "../vault/org-vault/attachments.component";
|
||||||
import { CollectionsComponent as OrgCollectionsComponent } from "../vault/org-vault/collections.component";
|
import { CollectionsComponent as OrgCollectionsComponent } from "../vault/org-vault/collections.component";
|
||||||
import { PremiumComponent } from "../vault/settings/premium.component";
|
|
||||||
|
|
||||||
import { EnvironmentSelectorModule } from "./../components/environment-selector/environment-selector.module";
|
import { EnvironmentSelectorModule } from "./../components/environment-selector/environment-selector.module";
|
||||||
import { AccountFingerprintComponent } from "./components/account-fingerprint/account-fingerprint.component";
|
import { AccountFingerprintComponent } from "./components/account-fingerprint/account-fingerprint.component";
|
||||||
|
|
Loading…
Reference in New Issue