Skip to content

Commit

Permalink
Luca google scoped login (#805)
Browse files Browse the repository at this point in the history
* Fixed auth enforcer so uses plugins if available

* This works

* Better doc

* Fixed one more case

* whoops

* Renamed internal members to have a _ in front

* Fixed problem with credentials being too long
  • Loading branch information
lucadealfaro authored Aug 30, 2023
1 parent b6cd403 commit 55645f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py4web/utils/auth_plugins/oauth2google_scoped.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def _define_tables(self):
Field('email'),
Field('name'), # First and last names, all together.
Field('profile_pic'), # URL of profile pic.
Field('credentials') # Credentials for access, stored in Json for generality.
Field('credentials', 'text') # Credentials for access, stored in Json for generality.
])


Expand Down

0 comments on commit 55645f1

Please sign in to comment.