Skip to content

Commit 1c11695

Browse files
committed
[EC-646] Move missing billing components
Some billing components were in the org settings module and needed to be moved the org billing module
1 parent 7973eb8 commit 1c11695

8 files changed

+7
-8
lines changed

apps/web/src/app/organizations/billing/organization-billing.module.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { NgModule } from "@angular/core";
22

3-
import { LooseComponentsModule } from "../../shared/loose-components.module";
4-
import { SharedModule } from "../../shared/shared.module";
3+
import { LooseComponentsModule, SharedModule } from "../../shared";
54

5+
import { AdjustSubscription } from "./adjust-subscription.component";
66
import { BillingSyncApiKeyComponent } from "./billing-sync-api-key.component";
7+
import { ChangePlanComponent } from "./change-plan.component";
8+
import { DownloadLicenseComponent } from "./download-license.component";
79
import { OrgBillingHistoryViewComponent } from "./organization-billing-history-view.component";
810
import { OrganizationBillingRoutingModule } from "./organization-billing-routing.module";
911
import { OrganizationBillingTabComponent } from "./organization-billing-tab.component";
@@ -12,7 +14,10 @@ import { OrganizationSubscriptionComponent } from "./organization-subscription.c
1214
@NgModule({
1315
imports: [SharedModule, LooseComponentsModule, OrganizationBillingRoutingModule],
1416
declarations: [
17+
AdjustSubscription,
1518
BillingSyncApiKeyComponent,
19+
ChangePlanComponent,
20+
DownloadLicenseComponent,
1621
OrganizationBillingTabComponent,
1722
OrganizationSubscriptionComponent,
1823
OrgBillingHistoryViewComponent,

apps/web/src/app/organizations/settings/organization-settings.module.ts

-6
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ import { LooseComponentsModule, SharedModule } from "../../shared";
44
import { PoliciesModule } from "../policies";
55

66
import { AccountComponent } from "./account.component";
7-
import { AdjustSubscription } from "./adjust-subscription.component";
8-
import { ChangePlanComponent } from "./change-plan.component";
97
import { DeleteOrganizationComponent } from "./delete-organization.component";
10-
import { DownloadLicenseComponent } from "./download-license.component";
118
import { OrganizationSettingsRoutingModule } from "./organization-settings-routing.module";
129
import { SettingsComponent } from "./settings.component";
1310
import { TwoFactorSetupComponent } from "./two-factor-setup.component";
@@ -17,10 +14,7 @@ import { TwoFactorSetupComponent } from "./two-factor-setup.component";
1714
declarations: [
1815
SettingsComponent,
1916
AccountComponent,
20-
AdjustSubscription,
21-
ChangePlanComponent,
2217
DeleteOrganizationComponent,
23-
DownloadLicenseComponent,
2418
TwoFactorSetupComponent,
2519
],
2620
})

0 commit comments

Comments
 (0)