2016-09-21 06:19:52 +00:00
|
|
|
class AngelAuthOptions {
|
2016-11-28 01:04:52 +00:00
|
|
|
bool canRespondWithJson;
|
2016-09-21 06:19:52 +00:00
|
|
|
String successRedirect;
|
|
|
|
String failureRedirect;
|
|
|
|
|
2016-11-28 01:04:52 +00:00
|
|
|
AngelAuthOptions(
|
|
|
|
{this.canRespondWithJson: true,
|
|
|
|
this.successRedirect,
|
|
|
|
String this.failureRedirect});
|
|
|
|
}
|