mirror of
https://github.com/bitwarden/web
synced 2025-12-11 22:03:21 +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 { UserGroupsComponent } from "./manage/user-groups.component";
|
||||||
import { OrganizationsRoutingModule } from "./organizations-routing.module";
|
import { OrganizationsRoutingModule } from "./organizations-routing.module";
|
||||||
import { PoliciesModule } from "./policies/policies.module";
|
import { PoliciesModule } from "./policies/policies.module";
|
||||||
import { AccountComponent } from "./settings/account.component";
|
import { SettingsModule } from "./settings/settings.module";
|
||||||
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 { AcceptFamilySponsorshipComponent } from "./sponsorships/accept-family-sponsorship.component";
|
import { AcceptFamilySponsorshipComponent } from "./sponsorships/accept-family-sponsorship.component";
|
||||||
import { FamiliesForEnterpriseSetupComponent } from "./sponsorships/families-for-enterprise-setup.component";
|
import { FamiliesForEnterpriseSetupComponent } from "./sponsorships/families-for-enterprise-setup.component";
|
||||||
import { ExportComponent } from "./tools/export.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 { UnsecuredWebsitesReportComponent } from "./tools/unsecured-websites-report.component";
|
||||||
import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.component";
|
import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.component";
|
||||||
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [CommonModule, OrganizationsRoutingModule, SharedModule, LayoutsModule, PoliciesModule],
|
imports: [
|
||||||
|
CommonModule,
|
||||||
|
OrganizationsRoutingModule,
|
||||||
|
SharedModule,
|
||||||
|
LayoutsModule,
|
||||||
|
PoliciesModule,
|
||||||
|
SettingsModule,
|
||||||
|
],
|
||||||
declarations: [
|
declarations: [
|
||||||
AcceptFamilySponsorshipComponent,
|
AcceptFamilySponsorshipComponent,
|
||||||
AccountComponent,
|
|
||||||
AdjustSubscription,
|
|
||||||
BillingComponent,
|
|
||||||
BillingSyncApiKeyComponent,
|
|
||||||
BulkConfirmComponent,
|
BulkConfirmComponent,
|
||||||
BulkRemoveComponent,
|
BulkRemoveComponent,
|
||||||
BulkStatusComponent,
|
BulkStatusComponent,
|
||||||
ChangePlanComponent,
|
|
||||||
CollectionAddEditComponent,
|
CollectionAddEditComponent,
|
||||||
DeleteOrganizationComponent,
|
|
||||||
DownloadLicenseComponent,
|
|
||||||
EntityEventsComponent,
|
EntityEventsComponent,
|
||||||
EventsComponent,
|
EventsComponent,
|
||||||
ExportComponent,
|
ExportComponent,
|
||||||
@@ -69,7 +58,6 @@ import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.comp
|
|||||||
FamiliesForEnterpriseSetupComponent,
|
FamiliesForEnterpriseSetupComponent,
|
||||||
GroupAddEditComponent,
|
GroupAddEditComponent,
|
||||||
GroupsComponent,
|
GroupsComponent,
|
||||||
ImageSubscriptionHiddenComponent,
|
|
||||||
ImportComponent,
|
ImportComponent,
|
||||||
InactiveTwoFactorReportComponent,
|
InactiveTwoFactorReportComponent,
|
||||||
ManageCollectionsComponent,
|
ManageCollectionsComponent,
|
||||||
@@ -80,10 +68,7 @@ import { WeakPasswordsReportComponent } from "./tools/weak-passwords-report.comp
|
|||||||
PolicyEditComponent,
|
PolicyEditComponent,
|
||||||
ResetPasswordComponent,
|
ResetPasswordComponent,
|
||||||
ReusedPasswordsReportComponent,
|
ReusedPasswordsReportComponent,
|
||||||
SettingsComponent,
|
|
||||||
SubscriptionComponent,
|
|
||||||
ToolsComponent,
|
ToolsComponent,
|
||||||
TwoFactorSetupComponent,
|
|
||||||
UnsecuredWebsitesReportComponent,
|
UnsecuredWebsitesReportComponent,
|
||||||
UserAddEditComponent,
|
UserAddEditComponent,
|
||||||
UserConfirmComponent,
|
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