Permit other keys in the cxguser cookie (#1982)

This commit is contained in:
Marcus Kinsella
2020-11-18 17:58:33 -08:00
committed by GitHub
parent 2cf55ab819
commit f77038ad58
+1 -1
View File
@@ -24,7 +24,7 @@ except ModuleNotFoundError:
class Tokens:
"""Simple class to represent the tokens that are saved/restored from the cookie"""
def __init__(self, access_token, id_token, refresh_token, expires_at):
def __init__(self, access_token, id_token, refresh_token, expires_at, **kwargs):
self.access_token = access_token
self.id_token = id_token
self.refresh_token = refresh_token