fix: use default redirect uri when not passed on end_session endpoint (#201)

This commit is contained in:
Livio Spring 2022-07-27 08:36:43 +02:00 committed by GitHub
parent b84bcbed76
commit 53ede2ee8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 44 additions and 26 deletions

View file

@ -54,6 +54,6 @@ type StorageNotFoundError interface {
type EndSessionRequest struct {
UserID string
Client Client
ClientID string
RedirectURI string
}