Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Make the URL of the ProviderSignInController and ConnectController configurable #243

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
* @author Roy Clarkson
*/
@Controller
@RequestMapping("/connect")
@RequestMapping("${spring.social.connect.url:/connect}")
public class ConnectController implements InitializingBean {

private final static Log logger = LogFactory.getLog(ConnectController.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
* @author Keith Donald
*/
@Controller
@RequestMapping("/signin")
@RequestMapping("${spring.social.signin.url:/signin}")
public class ProviderSignInController implements InitializingBean {

private final static Log logger = LogFactory.getLog(ProviderSignInController.class);
Expand Down