コード例 #1
0
ファイル: comment.py プロジェクト: cpwr/PromTal
def json_all_comments(entity, entity_id):
    comments = Comment.get_for(entity, entity_id, lazy=False)

    comments = {'data': [get_comment_json(comment) for comment in comments]}
    return jsonify(comments)
コード例 #2
0
ファイル: comment.py プロジェクト: alexbelich/PromTal
def json_all_comments(entity, entity_id):
    comments = Comment.get_for(entity, entity_id, lazy=False)

    comments = {'data': [get_comment_json(comment) for comment in comments]}
    return jsonify(comments)