diff options
Diffstat (limited to 'ogcp/models.py')
-rw-r--r-- | ogcp/models.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ogcp/models.py b/ogcp/models.py index 9ad40db..4b88a41 100644 --- a/ogcp/models.py +++ b/ogcp/models.py @@ -8,5 +8,6 @@ from flask_login import UserMixin class User(UserMixin): - def __init__(self, username): + def __init__(self, username, scopes): self.id = username + self.scopes = scopes |