Exemplo n.º 1
0
def get_tags(current_user):
    user = User.get_by_id(current_user.id)
    tags = Tag.by_silo(user.get_silo(), order_by=Tag.created_at.desc())
    return make_response(jsonify({
        'status': 'success',
        'tags': [t.json() for t in tags],
    })), 200