bitwarden-estensione-browser/src/app/app.module.ts

401 lines
19 KiB
TypeScript
Raw Normal View History

2018-06-05 05:10:41 +02:00
import 'core-js';
2018-06-05 21:02:53 +02:00
import { ToasterModule } from 'angular2-toaster';
import { Angulartics2Module } from 'angulartics2';
import { Angulartics2GoogleAnalytics } from 'angulartics2/ga';
2019-03-19 17:44:22 +01:00
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
2018-06-05 21:02:53 +02:00
2018-06-05 05:10:41 +02:00
import { AppRoutingModule } from './app-routing.module';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2018-06-10 04:40:53 +02:00
import { ServicesModule } from './services/services.module';
2018-06-05 21:02:53 +02:00
2018-06-05 05:10:41 +02:00
import { AppComponent } from './app.component';
2018-06-06 23:25:57 +02:00
import { ModalComponent } from './modal.component';
2018-06-05 05:10:41 +02:00
2018-06-21 17:28:14 +02:00
import { AvatarComponent } from './components/avatar.component';
2018-06-26 02:49:49 +02:00
import { CalloutComponent } from './components/callout.component';
import { PasswordStrengthComponent } from './components/password-strength.component';
2018-06-21 17:28:14 +02:00
2018-06-08 23:08:19 +02:00
import { FooterComponent } from './layouts/footer.component';
import { FrontendLayoutComponent } from './layouts/frontend-layout.component';
import { NavbarComponent } from './layouts/navbar.component';
import { OrganizationLayoutComponent } from './layouts/organization-layout.component';
import { UserLayoutComponent } from './layouts/user-layout.component';
2018-07-12 22:05:42 +02:00
import { AcceptOrganizationComponent } from './accounts/accept-organization.component';
2018-06-05 21:02:53 +02:00
import { HintComponent } from './accounts/hint.component';
import { LockComponent } from './accounts/lock.component';
2018-06-05 21:02:53 +02:00
import { LoginComponent } from './accounts/login.component';
2018-07-13 21:54:49 +02:00
import { RecoverDeleteComponent } from './accounts/recover-delete.component';
2018-07-13 21:36:27 +02:00
import { RecoverTwoFactorComponent } from './accounts/recover-two-factor.component';
2018-06-05 21:02:53 +02:00
import { RegisterComponent } from './accounts/register.component';
2018-06-05 21:06:50 +02:00
import { TwoFactorOptionsComponent } from './accounts/two-factor-options.component';
2018-06-05 21:02:53 +02:00
import { TwoFactorComponent } from './accounts/two-factor.component';
2018-07-12 20:19:47 +02:00
import { VerifyEmailTokenComponent } from './accounts/verify-email-token.component';
2018-07-13 22:24:53 +02:00
import { VerifyRecoverDeleteComponent } from './accounts/verify-recover-delete.component';
2018-06-05 21:02:53 +02:00
2018-07-10 16:06:57 +02:00
import {
CollectionAddEditComponent as OrgCollectionAddEditComponent,
} from './organizations/manage/collection-add-edit.component';
2018-07-06 16:21:08 +02:00
import { CollectionsComponent as OrgManageCollectionsComponent } from './organizations/manage/collections.component';
import { EntityEventsComponent as OrgEntityEventsComponent } from './organizations/manage/entity-events.component';
2018-07-10 05:48:26 +02:00
import { EntityUsersComponent as OrgEntityUsersComponent } from './organizations/manage/entity-users.component';
2018-07-06 16:21:08 +02:00
import { EventsComponent as OrgEventsComponent } from './organizations/manage/events.component';
2018-07-09 22:27:54 +02:00
import { GroupAddEditComponent as OrgGroupAddEditComponent } from './organizations/manage/group-add-edit.component';
2018-07-06 16:21:08 +02:00
import { GroupsComponent as OrgGroupsComponent } from './organizations/manage/groups.component';
import { ManageComponent as OrgManageComponent } from './organizations/manage/manage.component';
import { PeopleComponent as OrgPeopleComponent } from './organizations/manage/people.component';
2018-07-10 20:46:13 +02:00
import { UserAddEditComponent as OrgUserAddEditComponent } from './organizations/manage/user-add-edit.component';
2018-11-15 05:13:50 +01:00
import { UserConfirmComponent as OrgUserConfirmComponent } from './organizations/manage/user-confirm.component';
2018-07-10 21:03:13 +02:00
import { UserGroupsComponent as OrgUserGroupsComponent } from './organizations/manage/user-groups.component';
2018-07-06 16:21:08 +02:00
2018-07-16 18:42:49 +02:00
import { AccountComponent as OrgAccountComponent } from './organizations/settings/account.component';
2018-07-17 18:07:52 +02:00
import { AdjustSeatsComponent } from './organizations/settings/adjust-seats.component';
2019-03-07 17:18:45 +01:00
import { ApiKeyComponent as OrgApiKeyComponent } from './organizations/settings/api-key.component';
2019-03-20 15:11:51 +01:00
import { ChangePlanComponent } from './organizations/settings/change-plan.component';
2018-07-16 18:42:49 +02:00
import { DeleteOrganizationComponent } from './organizations/settings/delete-organization.component';
2019-03-20 14:56:50 +01:00
import { DownloadLicenseComponent } from './organizations/settings/download-license.component';
2018-07-16 23:17:07 +02:00
import { OrganizationBillingComponent } from './organizations/settings/organization-billing.component';
import { OrganizationSubscriptionComponent } from './organizations/settings/organization-subscription.component';
2019-03-07 17:18:45 +01:00
import { RotateApiKeyComponent as OrgRotateApiKeyComponent } from './organizations/settings/rotate-api-key.component';
2018-07-16 18:42:49 +02:00
import { SettingsComponent as OrgSettingComponent } from './organizations/settings/settings.component';
2018-07-18 23:10:26 +02:00
import {
TwoFactorSetupComponent as OrgTwoFactorSetupComponent,
} from './organizations/settings/two-factor-setup.component';
2018-07-16 18:42:49 +02:00
2018-07-05 20:40:53 +02:00
import { ExportComponent as OrgExportComponent } from './organizations/tools/export.component';
2018-12-14 19:56:01 +01:00
import {
ExposedPasswordsReportComponent as OrgExposedPasswordsReportComponent,
} from './organizations/tools/exposed-passwords-report.component';
2018-07-06 05:38:36 +02:00
import { ImportComponent as OrgImportComponent } from './organizations/tools/import.component';
2018-12-14 20:22:30 +01:00
import {
InactiveTwoFactorReportComponent as OrgInactiveTwoFactorReportComponent,
} from './organizations/tools/inactive-two-factor-report.component';
2018-12-14 20:42:04 +01:00
import {
ReusedPasswordsReportComponent as OrgReusedPasswordsReportComponent,
} from './organizations/tools/reused-passwords-report.component';
2018-07-05 20:40:53 +02:00
import { ToolsComponent as OrgToolsComponent } from './organizations/tools/tools.component';
2018-12-14 20:42:04 +01:00
import {
UnsecuredWebsitesReportComponent as OrgUnsecuredWebsitesReportComponent,
} from './organizations/tools/unsecured-websites-report.component';
import {
WeakPasswordsReportComponent as OrgWeakPasswordsReportComponent,
} from './organizations/tools/weak-passwords-report.component';
2018-07-05 20:40:53 +02:00
2018-07-05 19:14:33 +02:00
import { AddEditComponent as OrgAddEditComponent } from './organizations/vault/add-edit.component';
import { AttachmentsComponent as OrgAttachmentsComponent } from './organizations/vault/attachments.component';
import { CiphersComponent as OrgCiphersComponent } from './organizations/vault/ciphers.component';
import { CollectionsComponent as OrgCollectionsComponent } from './organizations/vault/collections.component';
import { GroupingsComponent as OrgGroupingsComponent } from './organizations/vault/groupings.component';
import { VaultComponent as OrgVaultComponent } from './organizations/vault/vault.component';
2018-07-04 05:33:12 +02:00
2018-06-21 04:27:37 +02:00
import { AccountComponent } from './settings/account.component';
2019-02-20 23:33:05 +01:00
import { AddCreditComponent } from './settings/add-credit.component';
2018-06-30 19:36:39 +02:00
import { AdjustPaymentComponent } from './settings/adjust-payment.component';
2018-06-30 05:41:35 +02:00
import { AdjustStorageComponent } from './settings/adjust-storage.component';
import { ChangeEmailComponent } from './settings/change-email.component';
2018-08-28 04:40:03 +02:00
import { ChangeKdfComponent } from './settings/change-kdf.component';
import { ChangePasswordComponent } from './settings/change-password.component';
2018-07-02 23:09:53 +02:00
import { CreateOrganizationComponent } from './settings/create-organization.component';
2018-06-21 23:14:36 +02:00
import { DeauthorizeSessionsComponent } from './settings/deauthorize-sessions.component';
import { DeleteAccountComponent } from './settings/delete-account.component';
2018-06-26 05:16:59 +02:00
import { DomainRulesComponent } from './settings/domain-rules.component';
2018-06-25 22:44:06 +02:00
import { OptionsComponent } from './settings/options.component';
2019-03-21 18:11:40 +01:00
import { OrganizationPlansComponent } from './settings/organization-plans.component';
import { OrganizationsComponent } from './settings/organizations.component';
2018-06-29 04:27:32 +02:00
import { PaymentComponent } from './settings/payment.component';
import { PremiumComponent } from './settings/premium.component';
2018-06-21 17:43:50 +02:00
import { ProfileComponent } from './settings/profile.component';
import { PurgeVaultComponent } from './settings/purge-vault.component';
2018-06-21 04:27:37 +02:00
import { SettingsComponent } from './settings/settings.component';
2018-06-27 15:20:09 +02:00
import { TwoFactorAuthenticatorComponent } from './settings/two-factor-authenticator.component';
2018-06-27 21:27:59 +02:00
import { TwoFactorDuoComponent } from './settings/two-factor-duo.component';
2018-06-27 22:56:11 +02:00
import { TwoFactorEmailComponent } from './settings/two-factor-email.component';
2018-06-28 15:40:11 +02:00
import { TwoFactorRecoveryComponent } from './settings/two-factor-recovery.component';
2018-06-27 04:51:58 +02:00
import { TwoFactorSetupComponent } from './settings/two-factor-setup.component';
2018-06-27 23:50:31 +02:00
import { TwoFactorU2fComponent } from './settings/two-factor-u2f.component';
import { TwoFactorVerifyComponent } from './settings/two-factor-verify.component';
2018-06-27 19:45:11 +02:00
import { TwoFactorYubiKeyComponent } from './settings/two-factor-yubikey.component';
2018-07-17 23:22:51 +02:00
import { UpdateKeyComponent } from './settings/update-key.component';
import { UpdateLicenseComponent } from './settings/update-license.component';
2018-06-28 20:05:04 +02:00
import { UserBillingComponent } from './settings/user-billing.component';
import { UserSubscriptionComponent } from './settings/user-subscription.component';
import { VerifyEmailComponent } from './settings/verify-email.component';
2018-06-21 04:27:37 +02:00
2018-06-28 17:58:33 +02:00
import { BreachReportComponent } from './tools/breach-report.component';
2018-06-10 05:33:12 +02:00
import { ExportComponent } from './tools/export.component';
2018-12-12 04:09:16 +01:00
import { ExposedPasswordsReportComponent } from './tools/exposed-passwords-report.component';
2018-06-10 05:33:12 +02:00
import { ImportComponent } from './tools/import.component';
2018-12-12 05:25:05 +01:00
import { InactiveTwoFactorReportComponent } from './tools/inactive-two-factor-report.component';
2018-06-21 00:16:20 +02:00
import { PasswordGeneratorHistoryComponent } from './tools/password-generator-history.component';
import { PasswordGeneratorComponent } from './tools/password-generator.component';
2018-12-11 20:47:41 +01:00
import { ReusedPasswordsReportComponent } from './tools/reused-passwords-report.component';
2018-06-10 05:33:12 +02:00
import { ToolsComponent } from './tools/tools.component';
2018-12-11 21:11:16 +01:00
import { UnsecuredWebsitesReportComponent } from './tools/unsecured-websites-report.component';
2018-12-11 23:49:51 +01:00
import { WeakPasswordsReportComponent } from './tools/weak-passwords-report.component';
2018-06-10 05:33:12 +02:00
2018-06-07 05:23:14 +02:00
import { AddEditComponent } from './vault/add-edit.component';
2018-06-06 23:25:57 +02:00
import { AttachmentsComponent } from './vault/attachments.component';
import { BulkDeleteComponent } from './vault/bulk-delete.component';
2018-06-12 23:33:08 +02:00
import { BulkMoveComponent } from './vault/bulk-move.component';
2018-06-13 06:03:48 +02:00
import { BulkShareComponent } from './vault/bulk-share.component';
2018-06-06 23:25:57 +02:00
import { CiphersComponent } from './vault/ciphers.component';
2018-06-12 19:08:47 +02:00
import { CollectionsComponent } from './vault/collections.component';
2018-06-06 23:25:57 +02:00
import { FolderAddEditComponent } from './vault/folder-add-edit.component';
import { GroupingsComponent } from './vault/groupings.component';
2018-06-12 17:46:11 +02:00
import { ShareComponent } from './vault/share.component';
2018-06-05 05:10:41 +02:00
import { VaultComponent } from './vault/vault.component';
2018-06-05 21:06:50 +02:00
import { IconComponent } from 'jslib/angular/components/icon.component';
2018-06-05 21:02:53 +02:00
import { ApiActionDirective } from 'jslib/angular/directives/api-action.directive';
import { AutofocusDirective } from 'jslib/angular/directives/autofocus.directive';
import { BlurClickDirective } from 'jslib/angular/directives/blur-click.directive';
import { BoxRowDirective } from 'jslib/angular/directives/box-row.directive';
import { FallbackSrcDirective } from 'jslib/angular/directives/fallback-src.directive';
2019-01-23 22:27:34 +01:00
import { FlexCopyDirective } from 'jslib/angular/directives/flex-copy.directive';
2018-06-05 21:02:53 +02:00
import { InputVerbatimDirective } from 'jslib/angular/directives/input-verbatim.directive';
import { StopClickDirective } from 'jslib/angular/directives/stop-click.directive';
import { StopPropDirective } from 'jslib/angular/directives/stop-prop.directive';
2018-06-09 06:39:14 +02:00
import { TrueFalseValueDirective } from 'jslib/angular/directives/true-false-value.directive';
2018-06-05 21:02:53 +02:00
2018-12-08 20:11:10 +01:00
import { ColorPasswordPipe } from 'jslib/angular/pipes/color-password.pipe';
2018-06-05 21:02:53 +02:00
import { I18nPipe } from 'jslib/angular/pipes/i18n.pipe';
import { SearchCiphersPipe } from 'jslib/angular/pipes/search-ciphers.pipe';
import { SearchPipe } from 'jslib/angular/pipes/search.pipe';
2018-06-05 21:02:53 +02:00
2018-07-24 03:47:08 +02:00
import { registerLocaleData } from '@angular/common';
2019-01-18 21:59:04 +01:00
import localeCa from '@angular/common/locales/ca';
2018-08-06 14:58:50 +02:00
import localeCs from '@angular/common/locales/cs';
2018-07-24 03:47:08 +02:00
import localeDa from '@angular/common/locales/da';
2018-07-31 03:14:34 +02:00
import localeDe from '@angular/common/locales/de';
2019-01-16 02:49:15 +01:00
import localeEnGb from '@angular/common/locales/en-GB';
2018-08-06 14:58:50 +02:00
import localeEs from '@angular/common/locales/es';
2018-08-21 22:01:47 +02:00
import localeEt from '@angular/common/locales/et';
2018-08-01 13:35:33 +02:00
import localeFr from '@angular/common/locales/fr';
2018-08-14 16:42:54 +02:00
import localeIt from '@angular/common/locales/it';
2018-12-28 16:06:38 +01:00
import localeJa from '@angular/common/locales/ja';
2018-08-06 14:58:50 +02:00
import localeNb from '@angular/common/locales/nb';
2018-08-22 05:23:30 +02:00
import localeNl from '@angular/common/locales/nl';
2018-08-06 23:42:59 +02:00
import localePl from '@angular/common/locales/pl';
2018-08-02 15:35:44 +02:00
import localePtBr from '@angular/common/locales/pt';
2018-07-31 03:14:34 +02:00
import localePtPt from '@angular/common/locales/pt-PT';
import localeRu from '@angular/common/locales/ru';
2018-07-25 17:38:37 +02:00
import localeSk from '@angular/common/locales/sk';
2018-08-06 14:58:50 +02:00
import localeSv from '@angular/common/locales/sv';
2018-12-28 16:06:38 +01:00
import localeUk from '@angular/common/locales/uk';
2018-08-06 14:58:50 +02:00
import localeZhCn from '@angular/common/locales/zh-Hans';
2018-12-28 16:06:38 +01:00
import localeZhTw from '@angular/common/locales/zh-Hant';
2018-07-24 03:47:08 +02:00
2019-01-18 21:59:04 +01:00
registerLocaleData(localeCa, 'ca');
2018-08-06 14:58:50 +02:00
registerLocaleData(localeCs, 'cs');
2018-07-24 03:47:08 +02:00
registerLocaleData(localeDa, 'da');
2018-07-31 03:14:34 +02:00
registerLocaleData(localeDe, 'de');
2019-01-16 02:49:15 +01:00
registerLocaleData(localeEnGb, 'en-GB');
2018-08-06 14:58:50 +02:00
registerLocaleData(localeEs, 'es');
2018-08-21 22:01:47 +02:00
registerLocaleData(localeEt, 'et');
2018-08-02 15:35:44 +02:00
registerLocaleData(localeFr, 'fr');
2018-08-14 16:42:54 +02:00
registerLocaleData(localeIt, 'it');
2018-12-28 16:06:38 +01:00
registerLocaleData(localeJa, 'ja');
2018-08-06 14:58:50 +02:00
registerLocaleData(localeNb, 'nb');
2018-08-22 05:23:30 +02:00
registerLocaleData(localeNl, 'nl');
2018-08-06 23:42:59 +02:00
registerLocaleData(localePl, 'pl');
2018-08-02 15:35:44 +02:00
registerLocaleData(localePtBr, 'pt-BR');
2018-07-31 03:14:34 +02:00
registerLocaleData(localePtPt, 'pt-PT');
registerLocaleData(localeRu, 'ru');
2018-07-25 17:38:37 +02:00
registerLocaleData(localeSk, 'sk');
2018-08-06 14:58:50 +02:00
registerLocaleData(localeSv, 'sv');
2018-12-28 16:06:38 +01:00
registerLocaleData(localeUk, 'uk');
2018-08-06 14:58:50 +02:00
registerLocaleData(localeZhCn, 'zh-CN');
2018-12-28 16:06:38 +01:00
registerLocaleData(localeZhTw, 'zh-TW');
2018-07-24 03:47:08 +02:00
2018-06-05 05:10:41 +02:00
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
FormsModule,
AppRoutingModule,
2018-06-05 21:02:53 +02:00
ServicesModule,
Angulartics2Module.forRoot([Angulartics2GoogleAnalytics], {
pageTracking: {
clearQueryParams: true,
},
}),
2018-09-11 23:30:44 +02:00
ToasterModule.forRoot(),
2019-03-19 17:44:22 +01:00
InfiniteScrollModule,
2018-06-05 05:10:41 +02:00
],
declarations: [
2018-07-12 22:05:42 +02:00
AcceptOrganizationComponent,
2018-06-21 04:27:37 +02:00
AccountComponent,
2019-02-20 23:33:05 +01:00
AddCreditComponent,
2018-06-07 05:23:14 +02:00
AddEditComponent,
2018-06-30 19:36:39 +02:00
AdjustPaymentComponent,
2018-07-17 18:07:52 +02:00
AdjustSeatsComponent,
2018-06-30 05:41:35 +02:00
AdjustStorageComponent,
2018-06-05 21:02:53 +02:00
ApiActionDirective,
2018-06-05 05:10:41 +02:00
AppComponent,
2018-06-06 23:25:57 +02:00
AttachmentsComponent,
2018-06-05 21:02:53 +02:00
AutofocusDirective,
2018-06-21 17:28:14 +02:00
AvatarComponent,
2018-06-05 21:02:53 +02:00
BlurClickDirective,
BoxRowDirective,
2018-06-28 17:58:33 +02:00
BreachReportComponent,
BulkDeleteComponent,
2018-06-12 23:33:08 +02:00
BulkMoveComponent,
2018-06-13 06:03:48 +02:00
BulkShareComponent,
2018-06-26 02:49:49 +02:00
CalloutComponent,
ChangeEmailComponent,
2018-08-28 04:40:03 +02:00
ChangeKdfComponent,
ChangePasswordComponent,
2019-03-20 15:11:51 +01:00
ChangePlanComponent,
2018-06-06 23:25:57 +02:00
CiphersComponent,
2018-06-12 19:08:47 +02:00
CollectionsComponent,
2018-12-08 20:11:10 +01:00
ColorPasswordPipe,
2018-07-02 23:09:53 +02:00
CreateOrganizationComponent,
2018-06-21 23:14:36 +02:00
DeauthorizeSessionsComponent,
DeleteAccountComponent,
2018-07-16 18:42:49 +02:00
DeleteOrganizationComponent,
2018-06-26 05:16:59 +02:00
DomainRulesComponent,
2019-03-20 14:56:50 +01:00
DownloadLicenseComponent,
2018-06-10 05:33:12 +02:00
ExportComponent,
2018-12-12 04:09:16 +01:00
ExposedPasswordsReportComponent,
2018-06-05 21:02:53 +02:00
FallbackSrcDirective,
2019-01-23 22:27:34 +01:00
FlexCopyDirective,
2018-06-06 23:25:57 +02:00
FolderAddEditComponent,
2018-06-08 23:08:19 +02:00
FooterComponent,
FrontendLayoutComponent,
2018-06-06 23:25:57 +02:00
GroupingsComponent,
2018-06-05 21:02:53 +02:00
HintComponent,
I18nPipe,
2018-12-12 05:25:05 +01:00
IconComponent,
2018-06-10 05:33:12 +02:00
ImportComponent,
2018-12-12 05:25:05 +01:00
InactiveTwoFactorReportComponent,
2018-06-05 21:02:53 +02:00
InputVerbatimDirective,
LockComponent,
2018-06-05 21:02:53 +02:00
LoginComponent,
2018-06-06 23:25:57 +02:00
ModalComponent,
2018-06-08 23:08:19 +02:00
NavbarComponent,
2018-06-25 22:44:06 +02:00
OptionsComponent,
2018-07-16 18:42:49 +02:00
OrgAccountComponent,
2018-07-05 15:42:50 +02:00
OrgAddEditComponent,
2019-03-07 17:18:45 +01:00
OrgApiKeyComponent,
2018-07-16 23:17:07 +02:00
OrganizationBillingComponent,
2019-03-21 18:11:40 +01:00
OrganizationPlansComponent,
OrganizationSubscriptionComponent,
2018-07-05 16:48:51 +02:00
OrgAttachmentsComponent,
2018-07-04 05:33:12 +02:00
OrgCiphersComponent,
2018-07-10 16:06:57 +02:00
OrgCollectionAddEditComponent,
2018-07-05 18:56:58 +02:00
OrgCollectionsComponent,
OrgEntityEventsComponent,
2018-07-10 05:48:26 +02:00
OrgEntityUsersComponent,
2018-07-06 16:21:08 +02:00
OrgEventsComponent,
2018-07-05 20:40:53 +02:00
OrgExportComponent,
2018-12-14 19:56:01 +01:00
OrgExposedPasswordsReportComponent,
2018-07-06 05:38:36 +02:00
OrgImportComponent,
2018-12-14 20:22:30 +01:00
OrgInactiveTwoFactorReportComponent,
2018-07-09 22:27:54 +02:00
OrgGroupAddEditComponent,
2018-07-04 05:33:12 +02:00
OrgGroupingsComponent,
2018-07-06 16:21:08 +02:00
OrgGroupsComponent,
OrgManageCollectionsComponent,
OrgManageComponent,
OrgPeopleComponent,
2018-12-14 20:42:04 +01:00
OrgReusedPasswordsReportComponent,
2019-03-07 17:18:45 +01:00
OrgRotateApiKeyComponent,
2018-07-16 18:42:49 +02:00
OrgSettingComponent,
2018-07-05 20:40:53 +02:00
OrgToolsComponent,
2018-07-18 23:10:26 +02:00
OrgTwoFactorSetupComponent,
2018-07-10 20:46:13 +02:00
OrgUserAddEditComponent,
2018-11-15 05:13:50 +01:00
OrgUserConfirmComponent,
2018-07-10 21:03:13 +02:00
OrgUserGroupsComponent,
2018-06-11 16:09:59 +02:00
OrganizationsComponent,
2018-06-08 23:08:19 +02:00
OrganizationLayoutComponent,
2018-12-14 20:42:04 +01:00
OrgUnsecuredWebsitesReportComponent,
2018-07-04 05:33:12 +02:00
OrgVaultComponent,
2018-12-14 20:42:04 +01:00
OrgWeakPasswordsReportComponent,
2018-06-21 00:16:20 +02:00
PasswordGeneratorComponent,
PasswordGeneratorHistoryComponent,
2018-12-11 21:11:16 +01:00
PasswordStrengthComponent,
2018-06-29 04:27:32 +02:00
PaymentComponent,
PremiumComponent,
2018-06-21 17:43:50 +02:00
ProfileComponent,
PurgeVaultComponent,
2018-07-13 21:54:49 +02:00
RecoverDeleteComponent,
2018-07-13 21:36:27 +02:00
RecoverTwoFactorComponent,
2018-06-05 21:02:53 +02:00
RegisterComponent,
2018-12-11 20:47:41 +01:00
ReusedPasswordsReportComponent,
2018-06-05 21:02:53 +02:00
SearchCiphersPipe,
SearchPipe,
2018-06-21 04:27:37 +02:00
SettingsComponent,
2018-06-12 17:46:11 +02:00
ShareComponent,
2018-06-05 21:02:53 +02:00
StopClickDirective,
StopPropDirective,
2018-06-10 05:33:12 +02:00
ToolsComponent,
2018-06-09 06:39:14 +02:00
TrueFalseValueDirective,
2018-06-27 15:20:09 +02:00
TwoFactorAuthenticatorComponent,
2018-06-05 21:02:53 +02:00
TwoFactorComponent,
2018-06-27 21:27:59 +02:00
TwoFactorDuoComponent,
2018-06-27 22:56:11 +02:00
TwoFactorEmailComponent,
2018-06-05 21:06:50 +02:00
TwoFactorOptionsComponent,
2018-06-28 15:40:11 +02:00
TwoFactorRecoveryComponent,
TwoFactorSetupComponent,
2018-06-27 23:50:31 +02:00
TwoFactorU2fComponent,
TwoFactorVerifyComponent,
2018-06-27 19:45:11 +02:00
TwoFactorYubiKeyComponent,
2018-12-11 21:11:16 +01:00
UnsecuredWebsitesReportComponent,
2018-07-17 23:22:51 +02:00
UpdateKeyComponent,
UpdateLicenseComponent,
2018-06-28 20:05:04 +02:00
UserBillingComponent,
2018-06-08 23:08:19 +02:00
UserLayoutComponent,
UserSubscriptionComponent,
2018-06-05 05:10:41 +02:00
VaultComponent,
VerifyEmailComponent,
2018-07-12 20:19:47 +02:00
VerifyEmailTokenComponent,
2018-07-13 22:24:53 +02:00
VerifyRecoverDeleteComponent,
2018-12-11 23:49:51 +01:00
WeakPasswordsReportComponent,
2018-06-05 05:10:41 +02:00
],
entryComponents: [
2018-06-07 05:23:14 +02:00
AddEditComponent,
2018-06-06 23:25:57 +02:00
AttachmentsComponent,
BulkDeleteComponent,
2018-06-12 23:33:08 +02:00
BulkMoveComponent,
2018-06-13 06:03:48 +02:00
BulkShareComponent,
2018-06-12 19:08:47 +02:00
CollectionsComponent,
2018-06-21 23:14:36 +02:00
DeauthorizeSessionsComponent,
DeleteAccountComponent,
2018-07-16 18:42:49 +02:00
DeleteOrganizationComponent,
2018-06-06 23:25:57 +02:00
FolderAddEditComponent,
ModalComponent,
2018-07-05 15:42:50 +02:00
OrgAddEditComponent,
2019-03-07 17:18:45 +01:00
OrgApiKeyComponent,
2018-07-05 16:48:51 +02:00
OrgAttachmentsComponent,
2018-07-10 16:06:57 +02:00
OrgCollectionAddEditComponent,
2018-07-05 18:56:58 +02:00
OrgCollectionsComponent,
OrgEntityEventsComponent,
2018-07-10 05:48:26 +02:00
OrgEntityUsersComponent,
2018-07-09 22:27:54 +02:00
OrgGroupAddEditComponent,
2019-03-07 17:18:45 +01:00
OrgRotateApiKeyComponent,
2018-07-10 20:46:13 +02:00
OrgUserAddEditComponent,
2018-11-15 05:13:50 +01:00
OrgUserConfirmComponent,
2018-07-10 21:03:13 +02:00
OrgUserGroupsComponent,
2018-06-21 00:16:20 +02:00
PasswordGeneratorHistoryComponent,
PurgeVaultComponent,
2018-06-12 17:46:11 +02:00
ShareComponent,
2018-06-27 15:20:09 +02:00
TwoFactorAuthenticatorComponent,
2018-06-27 21:27:59 +02:00
TwoFactorDuoComponent,
2018-06-27 22:56:11 +02:00
TwoFactorEmailComponent,
2018-06-11 17:43:10 +02:00
TwoFactorOptionsComponent,
2018-06-28 15:40:11 +02:00
TwoFactorRecoveryComponent,
2018-06-27 23:50:31 +02:00
TwoFactorU2fComponent,
2018-06-27 19:45:11 +02:00
TwoFactorYubiKeyComponent,
2018-07-17 23:22:51 +02:00
UpdateKeyComponent,
2018-06-05 05:10:41 +02:00
],
providers: [],
bootstrap: [AppComponent],
})
export class AppModule { }