This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from decorator import decorator | |
def _check_auth(args, pred): | |
_, _, context, _ = args | |
if not pred(context): | |
raise Exception("Unauthorized") | |
@decorator | |
def is_user(fn, *args, **kwargs): |