Beispiel #1
0
def async_contact_search(part):
    try:
        g.user.username
    except AttributeError:
        abort(401)
    c = Contacts(redis=g.r, user=g.user)
    return json.dumps(c.search(part))
Beispiel #2
0
def async_contact_search(part):
    try:
        g.user.username
    except AttributeError:
        abort(401)
    c = Contacts(redis=g.r, user=g.user)
    return json.dumps(c.search(part))