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

Commit ff07b8f

Browse files
committed
Merge branch 'master' of github.com:IdentityPython/JWTConnect-Python-OidcMsg
2 parents 502857d + 74a8b34 commit ff07b8f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/oidcmsg/oidc/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,9 @@ class RegistrationRequest(Message):
626626
"frontchannel_logout_uri": SINGLE_OPTIONAL_STRING,
627627
"frontchannel_logout_session_required": SINGLE_OPTIONAL_BOOLEAN,
628628
"backchannel_logout_uri": SINGLE_OPTIONAL_STRING,
629-
"backchannel_logout_session_supported": SINGLE_OPTIONAL_BOOLEAN
629+
"backchannel_logout_session_supported": SINGLE_OPTIONAL_BOOLEAN,
630+
"federation_type": OPTIONAL_LIST_OF_STRINGS,
631+
"organization_name": SINGLE_OPTIONAL_STRING
630632
}
631633
c_default = {"application_type": "web", "response_types": ["code"]}
632634
c_allowed_values = {

src/oidcmsg/storage/abfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ def get(self, item, default=None):
8686
except KeyError:
8787
return default
8888
else:
89+
logger.debug('Read from "%s"', item)
8990
return self.db[item]
9091

9192
def set(self, key, value):
@@ -114,6 +115,7 @@ def set(self, key, value):
114115
fp.write(self.value_conv.serialize(value))
115116

116117
self.db[_key] = value
118+
logger.debug('Wrote to "%s"', key)
117119
self.fmtime[_key] = self.get_mtime(fname)
118120

119121
def delete(self, key):

0 commit comments

Comments
 (0)