-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement authenticator * Changes for PR Co-authored-by: Ivan Terekhin <[email protected]>
- Loading branch information
1 parent
2003663
commit bbddf16
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import 'dart:async'; | ||
|
||
import 'package:chopper/chopper.dart'; | ||
|
||
/// This method should return a [Request] that includes credentials to satisfy an authentication challenge received in | ||
/// [response]. It should return `null` if the challenge cannot be satisfied. | ||
abstract class Authenticator { | ||
FutureOr<Request> authenticate(Request request, Response response); | ||
} |
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