Add a warning to not modify this file (#6235)
This commit is contained in:
parent
c9245df8d3
commit
86c5bd111c
|
@ -9,9 +9,14 @@ import { AppComponent } from "./app.component";
|
||||||
import { CoreModule } from "./core";
|
import { CoreModule } from "./core";
|
||||||
import { OssRoutingModule } from "./oss-routing.module";
|
import { OssRoutingModule } from "./oss-routing.module";
|
||||||
import { OssModule } from "./oss.module";
|
import { OssModule } from "./oss.module";
|
||||||
import { SendComponent } from "./tools/send/send.component";
|
|
||||||
import { WildcardRoutingModule } from "./wildcard-routing.module";
|
import { WildcardRoutingModule } from "./wildcard-routing.module";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the AppModule for the OSS version of Bitwarden.
|
||||||
|
* `bitwarden_license/bit-web/app.module.ts` contains the commercial version.
|
||||||
|
*
|
||||||
|
* You probably do not want to modify this file. Consider editing `oss.module.ts` instead.
|
||||||
|
*/
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
OssModule,
|
OssModule,
|
||||||
|
@ -22,7 +27,6 @@ import { WildcardRoutingModule } from "./wildcard-routing.module";
|
||||||
DragDropModule,
|
DragDropModule,
|
||||||
LayoutModule,
|
LayoutModule,
|
||||||
OssRoutingModule,
|
OssRoutingModule,
|
||||||
SendComponent,
|
|
||||||
WildcardRoutingModule, // Needs to be last to catch all non-existing routes
|
WildcardRoutingModule, // Needs to be last to catch all non-existing routes
|
||||||
],
|
],
|
||||||
declarations: [AppComponent],
|
declarations: [AppComponent],
|
||||||
|
|
|
@ -19,6 +19,12 @@ import { MaximumVaultTimeoutPolicyComponent } from "./admin-console/policies/max
|
||||||
import { AppRoutingModule } from "./app-routing.module";
|
import { AppRoutingModule } from "./app-routing.module";
|
||||||
import { AppComponent } from "./app.component";
|
import { AppComponent } from "./app.component";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the AppModule for the commercial version of Bitwarden.
|
||||||
|
* `apps/web/app.module.ts` contains the OSS version.
|
||||||
|
*
|
||||||
|
* You probably do not want to modify this file. Consider editing `oss.module.ts` instead.
|
||||||
|
*/
|
||||||
@NgModule({
|
@NgModule({
|
||||||
imports: [
|
imports: [
|
||||||
OverlayModule,
|
OverlayModule,
|
||||||
|
|
Loading…
Reference in New Issue