Skip to content

Commit

Permalink
fix(api): raise SSO session duration to 24h
Browse files Browse the repository at this point in the history
  • Loading branch information
fsamin authored and richardlt committed Jan 17, 2020
1 parent a6ccdbb commit 378259c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/api/authentication/corpsso/corpsso.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func (d authDriver) GetSigninURI(state sdk.AuthSigninConsumerToken) (sdk.AuthDri
}

func (d authDriver) GetSessionDuration() time.Duration {
return time.Hour
return 24 * time.Hour
}

func (d authDriver) CheckSigninRequest(req sdk.AuthConsumerSigninRequest) error {
Expand Down

0 comments on commit 378259c

Please sign in to comment.