Merge "The admin role judge exception caused the policy to fail"

This commit is contained in:
Zuul 2018-08-22 02:25:02 +00:00 committed by Gerrit Code Review
commit 2ecacc34b3
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ def _extract_context_from_environ(environ):
context_paras[key] = environ.get(context_paras[key])
role = environ.get('HTTP_X_ROLE')
# TODO(zhiyuan): replace with policy check
context_paras['is_admin'] = role == 'admin'
context_paras['is_admin'] = 'admin' in role.split(',') if role else False
return t_context.Context(**context_paras)

View File

@ -55,7 +55,7 @@ def extract_context_from_environ():
context_paras[key] = environ.get(context_paras[key])
role = environ.get('HTTP_X_ROLE')
context_paras['is_admin'] = role == 'admin'
context_paras['is_admin'] = 'admin' in role.split(',') if role else False
return Context(**context_paras)