mirror of
https://github.com/bitwarden/web
synced 2025-12-10 13:23:15 +00:00
Create SettingsModule
This commit is contained in:
@@ -24,17 +24,7 @@ import { UserConfirmComponent } from "./manage/user-confirm.component";
|
||||
import { UserGroupsComponent } from "./manage/user-groups.component";
|
||||
import { OrganizationsRoutingModule } from "./organizations-routing.module";
|
||||
import { PoliciesModule } from "./policies/policies.module";
|
||||
import { AccountComponent } from "./settings/account.component";
|
||||
import { AdjustSubscription } from "./settings/adjust-subscription.component";
|
||||
import { BillingSyncApiKeyComponent } from "./settings/billing-sync-api-key.component";
|
||||
import { BillingComponent } from "./settings/billing.component";
|
||||
import { ChangePlanComponent } from "./settings/change-plan.component";
|
||||
import { DeleteOrganizationComponent } from "./settings/delete-organization.component";
|
||||
import { DownloadLicenseComponent } from "./settings/download-license.component";
|
||||
import { ImageSubscriptionHiddenComponent } from "./settings/image-subscription-hidden.component";
|
||||
import { SettingsComponent } from "./settings/settings.component";
|
||||
import { SubscriptionComponent } from "./settings/subscription.component";
|
||||
import { TwoFactorSetupComponent } from "./settings/two-factor-setup.component";
|
||||
import { SettingsModule } from "./settings/settings.module";
|
||||
import { AcceptFamilySponsorshipComponent } from "./sponsorships/accept-family-sponsorship.component";
|
||||
import { FamiliesForEnterpriseSetupComponent } from "./sponsorships/families-for-enterprise-setup.component";
|
||||
import { ExportComponent } from "./tools/export.component";
|
||||
@@ -46,22 +36,21 @@ import { ToolsComponent } from "./tools/tools.component";
|
||||
import { UnsecuredWebsitesReportComponent } from "./tools/unsecured-websites-report.component";
|
||||
import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.component";
|
||||
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, OrganizationsRoutingModule, SharedModule, LayoutsModule, PoliciesModule],
|
||||
imports: [
|
||||
CommonModule,
|
||||
OrganizationsRoutingModule,
|
||||
SharedModule,
|
||||
LayoutsModule,
|
||||
PoliciesModule,
|
||||
SettingsModule,
|
||||
],
|
||||
declarations: [
|
||||
AcceptFamilySponsorshipComponent,
|
||||
AccountComponent,
|
||||
AdjustSubscription,
|
||||
BillingComponent,
|
||||
BillingSyncApiKeyComponent,
|
||||
BulkConfirmComponent,
|
||||
BulkRemoveComponent,
|
||||
BulkStatusComponent,
|
||||
ChangePlanComponent,
|
||||
CollectionAddEditComponent,
|
||||
DeleteOrganizationComponent,
|
||||
DownloadLicenseComponent,
|
||||
EntityEventsComponent,
|
||||
EventsComponent,
|
||||
ExportComponent,
|
||||
@@ -69,7 +58,6 @@ import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.comp
|
||||
FamiliesForEnterpriseSetupComponent,
|
||||
GroupAddEditComponent,
|
||||
GroupsComponent,
|
||||
ImageSubscriptionHiddenComponent,
|
||||
ImportComponent,
|
||||
InactiveTwoFactorReportComponent,
|
||||
ManageCollectionsComponent,
|
||||
@@ -80,10 +68,7 @@ import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.comp
|
||||
PolicyEditComponent,
|
||||
ResetPasswordComponent,
|
||||
ReusedPasswordsReportComponent,
|
||||
SettingsComponent,
|
||||
SubscriptionComponent,
|
||||
ToolsComponent,
|
||||
TwoFactorSetupComponent,
|
||||
UnsecuredWebsitesReportComponent,
|
||||
UserAddEditComponent,
|
||||
UserConfirmComponent,
|
||||
|
||||
34
src/app/organizations/settings/settings.module.ts
Normal file
34
src/app/organizations/settings/settings.module.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
|
||||
import { SharedModule } from "../../modules/shared.module";
|
||||
|
||||
import { AccountComponent } from "./account.component";
|
||||
import { AdjustSubscription } from "./adjust-subscription.component";
|
||||
import { BillingSyncApiKeyComponent } from "./billing-sync-api-key.component";
|
||||
import { BillingComponent } from "./billing.component";
|
||||
import { ChangePlanComponent } from "./change-plan.component";
|
||||
import { DeleteOrganizationComponent } from "./delete-organization.component";
|
||||
import { DownloadLicenseComponent } from "./download-license.component";
|
||||
import { ImageSubscriptionHiddenComponent } from "./image-subscription-hidden.component";
|
||||
import { SettingsComponent } from "./settings.component";
|
||||
import { SubscriptionComponent } from "./subscription.component";
|
||||
import { TwoFactorSetupComponent } from "./two-factor-setup.component";
|
||||
|
||||
@NgModule({
|
||||
imports: [CommonModule, SharedModule],
|
||||
declarations: [
|
||||
AccountComponent,
|
||||
AdjustSubscription,
|
||||
BillingComponent,
|
||||
BillingSyncApiKeyComponent,
|
||||
ChangePlanComponent,
|
||||
DeleteOrganizationComponent,
|
||||
DownloadLicenseComponent,
|
||||
ImageSubscriptionHiddenComponent,
|
||||
SettingsComponent,
|
||||
SubscriptionComponent,
|
||||
TwoFactorSetupComponent,
|
||||
],
|
||||
})
|
||||
export class SettingsModule {}
|
||||
Reference in New Issue
Block a user