Last active
July 27, 2016 15:23
-
-
Save DSchau/9b9f6a2e3ad1071939ddf9441c197414 to your computer and use it in GitHub Desktop.
The module for the interceptors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AuthenticationInterceptor } from './authentication-interceptor'; | |
import { interceptorConfig } from './config'; | |
export default angular.module('sampleApp.services.interceptors', [ | |
]) | |
.config(interceptorConfig) | |
.factory('AuthenticationInterceptor', AuthenticationInterceptor); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment