Created
March 18, 2014 21:05
-
-
Save pbanaszkiewicz/9629610 to your computer and use it in GitHub Desktop.
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
class Job(object): | |
@require_perms("create_vm") | |
@staticmethod | |
def create_vm(**data): | |
pass | |
# ... somewhere else ... | |
with permissions(current_user.perms): | |
job = Job.create_vm() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment