Skip to content

Instantly share code, notes, and snippets.

@DSchau
Last active July 27, 2016 15:23
Show Gist options
  • Save DSchau/9b9f6a2e3ad1071939ddf9441c197414 to your computer and use it in GitHub Desktop.
Save DSchau/9b9f6a2e3ad1071939ddf9441c197414 to your computer and use it in GitHub Desktop.
The module for the interceptors
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