Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 008b3d7

Browse files
committed
Added missing parameter.
1 parent 802634a commit 008b3d7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/oidcmsg/oidc/session.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import logging
22

33
from cryptojwt.exception import UnsupportedAlgorithm
4+
from oidcmsg.message import OPTIONAL_LIST_OF_SP_SEP_STRINGS
45

56
from oidcmsg.time_util import utc_time_sans_frac
67

@@ -50,7 +51,8 @@ class EndSessionRequest(Message):
5051
c_param = {
5152
"id_token_hint": SINGLE_OPTIONAL_IDTOKEN,
5253
"post_logout_redirect_uri": SINGLE_OPTIONAL_STRING,
53-
"state": SINGLE_OPTIONAL_STRING
54+
"state": SINGLE_OPTIONAL_STRING,
55+
"ui_locales": OPTIONAL_LIST_OF_SP_SEP_STRINGS
5456
}
5557

5658
def verify(self, **kwargs):

0 commit comments

Comments
 (0)