1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

sign-in/recover password links sending to registration plugin

This commit is contained in:
Nikolay Pultsin 2011-10-04 09:43:41 +01:00
parent 69465a0d47
commit cd997c4f0f
2 changed files with 4 additions and 0 deletions

View file

@ -66,7 +66,9 @@ public abstract class Util implements UserRegistrationConstants {
static Intent authorizationIntent(INetworkLink link, Uri id) {
final Intent intent = new Intent(AUTHORIZATION_ACTION, id);
intent.putExtra(CATALOG_URL, link.getUrl(UrlInfo.Type.Catalog));
intent.putExtra(SIGNIN_URL, link.getUrl(UrlInfo.Type.SignIn));
intent.putExtra(SIGNUP_URL, link.getUrl(UrlInfo.Type.SignUp));
intent.putExtra(RECOVER_PASSWORD_URL, link.getUrl(UrlInfo.Type.RecoverPassword));
return intent;
}