Skip to content

Commit 2e60a53

Browse files
committed
changed session key name to protected. refs #161
1 parent c8293bb commit 2e60a53

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

social/src/main/scala/jp/t2v/lab/play2/auth/social/core/OAuth10aController.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ trait OAuth10aController extends Controller with OAuthController {
1414

1515
protected val authenticator: OAuth10aAuthenticator
1616

17-
private val RequestTokenSecretKey = "play.social.requestTokenSecret"
17+
protected val RequestTokenSecretKey = "play.social.requestTokenSecret"
1818

1919
def login = AsyncStack(ExecutionContextKey -> OAuthExecutionContext) { implicit request =>
2020
implicit val ec = StackActionExecutionContext

social/src/main/scala/jp/t2v/lab/play2/auth/social/core/OAuth2Controller.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ trait OAuth2Controller extends Controller with OAuthController { self: OptionalA
1515

1616
protected val authenticator: OAuth2Authenticator
1717

18-
private val OAuth2StateKey = "play.auth.social.oauth2.state"
18+
protected val OAuth2StateKey = "play.auth.social.oauth2.state"
1919

2020
// TODO scope is optional in some services
2121
// TODO some services have more optional parameter

0 commit comments

Comments
 (0)