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 a79e9fc commit 472e6a2Copy full SHA for 472e6a2
README.md
@@ -86,3 +86,10 @@ The `loginConfirmed` method supports the injection of an Updater function that w
86
87
The initial failed request will now be retried, all queued http requests will be recalculated using the Updater-Function.
88
89
+It is also possible to stop specific request from being retried, by returning ``false`` from the Updater-Function:
90
+
91
+ authService.loginConfirmed('success', function(config){
92
+ if (shouldSkipRetryOnSuccess(config))
93
+ return false;
94
+ return config;
95
+ })
0 commit comments