예제 #1
0
파일: views.py 프로젝트: Git-Hexin/zhihuweb
def unfollow_tag(id):
    '取消关注话题'
    if current_user.is_following_tag(id):
        current_user.unfollow_tag(id)
    return jsonify({})  #返回空的json
예제 #2
0
파일: views.py 프로젝트: Git-Hexin/zhihuweb
def follow_tag(id):
    '关注话题'
    if not current_user.is_following_tag(id):
        current_user.follow_tag(id)
    return jsonify({})  #返回空的json