Last active
April 27, 2016 14:36
-
-
Save asouza/4f6295839cdaa42f9769da48215271be to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Controller | |
@RequestMapping("/connect") | |
public class CustomConnectController extends ConnectController { | |
@Autowired | |
public CustomConnectController(ConnectionFactoryLocator connectionFactoryLocator, | |
ConnectionRepository connectionRepository) { | |
super(connectionFactoryLocator, connectionRepository); | |
} | |
@Override | |
protected RedirectView connectionStatusRedirect(String providerId, NativeWebRequest request) { | |
return new RedirectView("/facebook/login"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment