Skip to content
Snippets Groups Projects
Verified Commit 7a0e62a7 authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Move interceptors to specific folders

parent 38eb14e8
1 merge request!97Resolve "Refactor project structure"
Pipeline #13728 failed with stage
in 34 seconds
......@@ -79,7 +79,7 @@ import { AddContentComponent } from './components/pages/add-content/add-content.
import { ParticipantContentCarouselPageComponent } from './components/pages/participant-content-carousel-page/participant-content-carousel-page.component';
import { ParticipantTextContentComponent } from './components/fragments/participant-text-content/participant-text-content.component';
import { CreatorTextContentComponent } from './components/fragments/creator-text-content/creator-text-content.component';
import { AuthenticationInterceptor } from './authentication.interceptor';
import { AuthenticationInterceptor } from './interceptors/authentication.interceptor';
@NgModule({
declarations: [
......
import { Injectable } from '@angular/core';
import { HttpErrorResponse, HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse } from '@angular/common/http';
import 'rxjs/add/operator/do';
import { AuthenticationService } from './authentication.service';
import { NotificationService } from './notification.service';
import { AuthenticationService } from '../authentication.service';
import { NotificationService } from '../notification.service';
import { Router } from '@angular/router';
import { Observable } from 'rxjs/Observable';
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment