Skip to content

Commit

Permalink
Merge pull request #167 from t2v/feature/161_session_key_name_protected
Browse files Browse the repository at this point in the history
changed session key name to protected. refs #161
  • Loading branch information
gakuzzzz committed Mar 8, 2016
2 parents c8293bb + 2e60a53 commit 2dd6944
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ trait OAuth10aController extends Controller with OAuthController {

protected val authenticator: OAuth10aAuthenticator

private val RequestTokenSecretKey = "play.social.requestTokenSecret"
protected val RequestTokenSecretKey = "play.social.requestTokenSecret"

def login = AsyncStack(ExecutionContextKey -> OAuthExecutionContext) { implicit request =>
implicit val ec = StackActionExecutionContext
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ trait OAuth2Controller extends Controller with OAuthController { self: OptionalA

protected val authenticator: OAuth2Authenticator

private val OAuth2StateKey = "play.auth.social.oauth2.state"
protected val OAuth2StateKey = "play.auth.social.oauth2.state"

// TODO scope is optional in some services
// TODO some services have more optional parameter
Expand Down

0 comments on commit 2dd6944

Please sign in to comment.