Skip to content

Commit

Permalink
fix(compilation): Missing implementation from interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
NORMAND, Thibault committed Jan 10, 2018
1 parent 53e628d commit 2a908a1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions handler/openid/strategy_jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,24 @@ func (s *DefaultSession) GetSubject() string {
return s.Subject
}

func (s *DefaultSession) GetCodeChallenge() string {
// HACK: No need
return ""
}

func (s *DefaultSession) SetCodeChallenge(string) {
// HACK: No need
}

func (s *DefaultSession) GetCodeChallengeMethod() string {
// HACK: No need
return ""
}

func (s *DefaultSession) SetCodeChallengeMethod(string) {
// HACK: No need
}

func (s *DefaultSession) IDTokenHeaders() *jwt.Headers {
if s.Headers == nil {
s.Headers = &jwt.Headers{}
Expand Down

0 comments on commit 2a908a1

Please sign in to comment.