Created
July 27, 2016 15:19
-
-
Save DSchau/e0c4f086719911361f6ce66357b94b50 to your computer and use it in GitHub Desktop.
authentication interceptor
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
export function AuthenticationInterceptor($log) { | |
'ngInject'; | |
return { | |
request(config) { | |
$log.debug('intercepted'); | |
return config; | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment