コード例 #1
0
ファイル: test_wsgi.py プロジェクト: arminbhy/roax
 def authorize(self):
     ctx = context.last(context="auth")
     if not ctx:
         raise roax.resource.Unauthorized
コード例 #2
0
 def authorize(self):
     if not context.last(self.context):
         raise Forbidden()
コード例 #3
0
ファイル: test_wsgi.py プロジェクト: arminbhy/roax
 def authorize(self):
     ctx = context.last(context="auth")
     if not ctx or ctx["role"] != "god":
         raise roax.resource.Unauthorized
コード例 #4
0
 def get_context(self):
     """Return the context that this scheme pushes on the stack."""
     return context.last(self.context)