We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f379661 commit 6191b43Copy full SHA for 6191b43
src/http-auth-interceptor.js
@@ -17,6 +17,10 @@
17
* retry of all deferred requests.
18
* @param data an optional argument to pass on to $broadcast which may be useful for
19
* example if you need to pass through details of the user that was logged in
20
+ * @param configUpdater an optional transformation function that can modify the
21
+ * $http configuration object for requests that are retried
22
+ * after having logged in. This can be used for example to add
23
+ * an authentication token. It must return the modified configuration object.
24
*/
25
loginConfirmed: function(data, configUpdater) {
26
var updater = configUpdater || function(config) {return config;};
0 commit comments