Merge remote-tracking branch 'remotes/origin/master' into authentication

# Conflicts:
#	src/app/app.effects.ts
#	src/app/app.module.ts
#	src/app/app.reducer.ts
#	src/app/core/core.module.ts
#	src/app/shared/shared.module.ts
This commit is contained in:
Giuseppe Digilio
2018-05-15 17:01:26 +02:00
38 changed files with 1446 additions and 26 deletions

View File

@@ -1,7 +1,6 @@
import { APP_BASE_HREF, CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { NgModule } from '@angular/core';
import { BrowserTransferStateModule } from '@angular/platform-browser';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
@@ -29,6 +28,8 @@ import { HeaderComponent } from './header/header.component';
import { PageNotFoundComponent } from './pagenotfound/pagenotfound.component';
import { DSpaceRouterStateSerializer } from './shared/ngrx/dspace-router-state-serializer';
import { NotificationsBoardComponent } from './shared/notifications/notifications-board/notifications-board.component';
import { NotificationComponent } from './shared/notifications/notification/notification.component';
import { SharedModule } from './shared/shared.module';
export function getConfig() {
@@ -87,7 +88,9 @@ if (!ENV_CONFIG.production) {
AppComponent,
HeaderComponent,
FooterComponent,
PageNotFoundComponent
PageNotFoundComponent,
NotificationComponent,
NotificationsBoardComponent
],
exports: [AppComponent]
})