Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import * as moment from 'moment';
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { JhiMainComponent, NavbarComponent, FooterComponent, PageRibbonComponent, ActiveMenuDirective, ErrorComponent } from './layouts';
import { Svn2GitMigrationModule } from 'app/migration/migation-process.module';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BrowserModule } from '@angular/platform-browser';
import { ConfigurationService } from 'app/shared/service/configuration-service';
export function configInit(configService: ConfigurationService) {
return () => configService.init();
}
@NgModule({
imports: [
Svn2GitAppRoutingModule,
NgxWebstorageModule.forRoot({ prefix: 'jhi', separator: '-' }),
Svn2GitSharedModule,
Svn2GitCoreModule,
Svn2GitHomeModule,
Svn2GitAccountModule,
Svn2GitEntityModule,
Svn2GitMigrationModule,
BrowserAnimationsModule,
BrowserModule
// jhipster-needle-angular-add-module JHipster will add new module here
],
declarations: [JhiMainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: AuthInterceptor,
multi: true,
import * as moment from 'moment';
import { NgbDateAdapter, NgbDatepickerConfig } from '@ng-bootstrap/ng-bootstrap';
import { NgbDateMomentAdapter } from 'app/shared/util/datepicker-adapter';
import { AuthInterceptor } from 'app/blocks/interceptor/auth.interceptor';
import { AuthExpiredInterceptor } from 'app/blocks/interceptor/auth-expired.interceptor';
import { ErrorHandlerInterceptor } from 'app/blocks/interceptor/errorhandler.interceptor';
import { NotificationInterceptor } from 'app/blocks/interceptor/notification.interceptor';
import { fontAwesomeIcons } from './icons/font-awesome-icons';
@NgModule({
imports: [
HttpClientModule,
CookieModule.forRoot(),
NgxWebstorageModule.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000,
i18nEnabled: true,
defaultI18nLang: 'en'
}),
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useFactory: translatePartialLoader,
deps: [HttpClient]
},
missingTranslationHandler: {
provide: MissingTranslationHandler,
useFactory: missingTranslationHandler,
import { ErrorHandlerInterceptor } from './blocks/interceptor/errorhandler.interceptor';
import { NotificationInterceptor } from './blocks/interceptor/notification.interceptor';
import { ManageMonolithicSharedModule } from 'app/shared';
import { ManageMonolithicCoreModule } from 'app/core';
import { ManageMonolithicAppRoutingModule } from './app-routing.module';
import { ManageMonolithicHomeModule } from './home/home.module';
import { ManageMonolithicAccountModule } from './account/account.module';
import { ManageMonolithicEntityModule } from './entities/entity.module';
import * as moment from 'moment';
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { JhiMainComponent, NavbarComponent, FooterComponent, PageRibbonComponent, ActiveMenuDirective, ErrorComponent } from './layouts';
@NgModule({
imports: [
BrowserModule,
NgxWebstorageModule.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000,
i18nEnabled: true,
defaultI18nLang: 'zh-cn'
}),
ManageMonolithicSharedModule.forRoot(),
ManageMonolithicCoreModule,
ManageMonolithicHomeModule,
ManageMonolithicAccountModule,
// jhipster-needle-angular-add-module JHipster will add new module here
ManageMonolithicEntityModule,
ManageMonolithicAppRoutingModule
],
declarations: [JhiMainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent],
import * as moment from 'moment';
import { NgbDateAdapter, NgbDatepickerConfig } from '@ng-bootstrap/ng-bootstrap';
import { NgbDateMomentAdapter } from 'app/shared/util/datepicker-adapter';
import { AuthInterceptor } from 'app/blocks/interceptor/auth.interceptor';
import { AuthExpiredInterceptor } from 'app/blocks/interceptor/auth-expired.interceptor';
import { ErrorHandlerInterceptor } from 'app/blocks/interceptor/errorhandler.interceptor';
import { NotificationInterceptor } from 'app/blocks/interceptor/notification.interceptor';
import { fontAwesomeIcons } from './icons/font-awesome-icons';
@NgModule({
imports: [
HttpClientModule,
CookieModule.forRoot(),
NgxWebstorageModule.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000
})
],
providers: [
Title,
{
provide: LOCALE_ID,
useValue: 'en'
},
{ provide: NgbDateAdapter, useClass: NgbDateMomentAdapter },
DatePipe,
{
provide: HTTP_INTERCEPTORS,
import { CookieModule } from 'ngx-cookie';
import { NgxWebstorageModule } from 'ngx-webstorage';
import { NgJhipsterModule } from 'ng-jhipster';
import locale from '@angular/common/locales/en';
import * as moment from 'moment';
import { NgbDateAdapter, NgbDatepickerConfig } from '@ng-bootstrap/ng-bootstrap';
import { NgbDateMomentAdapter } from 'app/shared/util/datepicker-adapter';
import { fontAwesomeIcons } from './icons/font-awesome-icons';
@NgModule({
imports: [
HttpClientModule,
CookieModule.forRoot(),
NgxWebstorageModule.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000
})
],
providers: [
Title,
{
provide: LOCALE_ID,
useValue: 'en'
},
{ provide: NgbDateAdapter, useClass: NgbDateMomentAdapter },
DatePipe
]
})
import { ErrorHandlerInterceptor } from './blocks/interceptor/errorhandler.interceptor';
import { NotificationInterceptor } from './blocks/interceptor/notification.interceptor';
import { JhipsterSampleApplicationSharedModule } from 'app/shared';
import { JhipsterSampleApplicationCoreModule } from 'app/core';
import { JhipsterSampleApplicationAppRoutingModule } from './app-routing.module';
import { JhipsterSampleApplicationHomeModule } from './home/home.module';
import { JhipsterSampleApplicationAccountModule } from './account/account.module';
import { JhipsterSampleApplicationEntityModule } from './entities/entity.module';
import * as moment from 'moment';
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { JhiMainComponent, NavbarComponent, FooterComponent, PageRibbonComponent, ActiveMenuDirective, ErrorComponent } from './layouts';
@NgModule({
imports: [
BrowserModule,
Ng2Webstorage.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000,
i18nEnabled: true,
defaultI18nLang: 'en'
}),
JhipsterSampleApplicationSharedModule.forRoot(),
JhipsterSampleApplicationCoreModule,
JhipsterSampleApplicationHomeModule,
JhipsterSampleApplicationAccountModule,
// jhipster-needle-angular-add-module JHipster will add new module here
JhipsterSampleApplicationEntityModule,
JhipsterSampleApplicationAppRoutingModule
],
declarations: [JhiMainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent],
import {
JhiMainComponent,
NavbarComponent,
FooterComponent,
ProfileService,
PageRibbonComponent,
ActiveMenuDirective,
ErrorComponent
} from './layouts';
@NgModule({
imports: [
BrowserModule,
JhipsterSampleApplicationNg2AppRoutingModule,
Ng2Webstorage.forRoot({ prefix: 'jhi', separator: '-'}),
JhipsterSampleApplicationNg2SharedModule,
JhipsterSampleApplicationNg2HomeModule,
JhipsterSampleApplicationNg2AdminModule,
JhipsterSampleApplicationNg2AccountModule,
JhipsterSampleApplicationNg2EntityModule,
// jhipster-needle-angular-add-module JHipster will add new module here
],
declarations: [
JhiMainComponent,
NavbarComponent,
ErrorComponent,
PageRibbonComponent,
ActiveMenuDirective,
FooterComponent
],
providers: [
import { NotificationInterceptor } from './blocks/interceptor/notification.interceptor';
import { GatewaySharedModule } from 'app/shared';
import { GatewayCoreModule } from 'app/core';
import { GatewayAppRoutingModule } from './app-routing.module';
import { GatewayHomeModule } from './home/home.module';
import { GatewayAccountModule } from './account/account.module';
import { GatewayEntityModule } from './entities/entity.module';
import * as moment from 'moment';
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { JhiMainComponent, NavbarComponent, FooterComponent, PageRibbonComponent, ErrorComponent } from './layouts';
@NgModule({
imports: [
BrowserModule,
GatewayAppRoutingModule,
Ng2Webstorage.forRoot({ prefix: 'jhi', separator: '-' }),
NgJhipsterModule.forRoot({
// set below to true to make alerts look like toast
alertAsToast: false,
alertTimeout: 5000
}),
GatewaySharedModule.forRoot(),
GatewayCoreModule,
GatewayHomeModule,
GatewayAccountModule,
// jhipster-needle-angular-add-module JHipster will add new module here
GatewayEntityModule
],
declarations: [JhiMainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, FooterComponent],
providers: [
{
provide: HTTP_INTERCEPTORS,
import { ErrorHandlerInterceptor } from './blocks/interceptor/errorhandler.interceptor';
import { NotificationInterceptor } from './blocks/interceptor/notification.interceptor';
import { ImGatewaySharedModule } from 'app/shared';
import { ImGatewayCoreModule } from 'app/core';
import { ImGatewayAppRoutingModule } from './app-routing.module';
import { ImGatewayHomeModule } from './home/home.module';
import { ImGatewayAccountModule } from './account/account.module';
import { ImGatewayEntityModule } from './entities/entity.module';
// jhipster-needle-angular-add-module-import JHipster will add new module here
import { JhiMainComponent, NavbarComponent, FooterComponent, PageRibbonComponent, ActiveMenuDirective, ErrorComponent } from './layouts';
@NgModule({
imports: [
BrowserModule,
ImGatewayAppRoutingModule,
Ng2Webstorage.forRoot({ prefix: 'jhi', separator: '-' }),
ImGatewaySharedModule,
ImGatewayCoreModule,
ImGatewayHomeModule,
ImGatewayAccountModule,
ImGatewayEntityModule
// jhipster-needle-angular-add-module JHipster will add new module here
],
declarations: [JhiMainComponent, NavbarComponent, ErrorComponent, PageRibbonComponent, ActiveMenuDirective, FooterComponent],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: AuthExpiredInterceptor,
multi: true,
deps: [Injector]
},
{
import {
JhiMainComponent,
NavbarComponent,
FooterComponent,
ActiveMenuDirective,
ErrorComponent
} from './layouts';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
MaterialModule,
InspectorAppRoutingModule,
Ng2Webstorage.forRoot({ prefix: 'jhi', separator: '-'}),
InspectorSharedModule,
InspectorHomeModule,
// jhipster-needle-angular-add-module JHipster will add new module here
],
declarations: [
JhiMainComponent,
NavbarComponent,
ErrorComponent,
ActiveMenuDirective,
FooterComponent
],
providers: [
customHttpProvider(),
PaginationConfig,
],
bootstrap: [ JhiMainComponent ]