Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Commits
7a0e62a7
There was a problem fetching the latest pipeline status.
Verified
Commit
7a0e62a7
authored
7 years ago
by
Lukas Maximilian Kimpel
Browse files
Options
Downloads
Patches
Plain Diff
Move interceptors to specific folders
parent
38eb14e8
1 merge request
!97
Resolve "Refactor project structure"
Pipeline
#13728
failed with stage
in 34 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/app.module.ts
+1
-1
1 addition, 1 deletion
src/app/app.module.ts
src/app/interceptors/authentication.interceptor.ts
+2
-2
2 additions, 2 deletions
src/app/interceptors/authentication.interceptor.ts
with
3 additions
and
3 deletions
src/app/app.module.ts
+
1
−
1
View file @
7a0e62a7
...
...
@@ -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
:
[
...
...
This diff is collapsed.
Click to expand it.
src/app/authentication.interceptor.ts
→
src/app/
interceptors/
authentication.interceptor.ts
+
2
−
2
View file @
7a0e62a7
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
'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment