From f77038ad5832befd484d01e468899e1a2384302d Mon Sep 17 00:00:00 2001 From: Marcus Kinsella Date: Wed, 18 Nov 2020 17:58:33 -0800 Subject: [PATCH] Permit other keys in the cxguser cookie (#1982) --- server/auth/auth_oauth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/auth/auth_oauth.py b/server/auth/auth_oauth.py index efc79c30..f1e50504 100644 --- a/server/auth/auth_oauth.py +++ b/server/auth/auth_oauth.py @@ -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