Skip to content

Instantly share code, notes, and snippets.

@marcelolebre
Created April 30, 2017 12:11
Show Gist options
  • Save marcelolebre/4f8b7cb1ab60fc1944c099a257e15fbc to your computer and use it in GitHub Desktop.
Save marcelolebre/4f8b7cb1ab60fc1944c099a257e15fbc to your computer and use it in GitHub Desktop.
class RoleFinder(object):
@classmethod
def get_from_id(cls, role_id):
return Role.query.get(role_id)
@classmethod
def get_from_app(cls, app_id):
return Role.query.filter_by(app_id=app_id).first()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment