[ADD]:Added Upstream Patch for auth_oauth

This commit is contained in:
Fatemi Lokhandwala 2018-07-19 16:58:13 +05:30
parent 750aef6e5f
commit 7a79c0c5d9
1 changed files with 4 additions and 0 deletions

View File

@ -131,6 +131,8 @@ class OAuthController(http.Controller):
def signin(self, **kw):
state = json.loads(kw['state'])
dbname = state['d']
if not http.db_filter([dbname]):
return BadRequest()
provider = state['p']
context = state.get('c', {})
registry = registry_get(dbname)
@ -180,6 +182,8 @@ class OAuthController(http.Controller):
dbname = db_monodb()
if not dbname:
return BadRequest()
if not http.db_filter([dbname]):
return BadRequest()
registry = registry_get(dbname)
with registry.cursor() as cr: