예제 #1
0
파일: posts.py 프로젝트: CalPolyIEEE/ieee
def get(id):
    return jsonify(get_item(id, 'post', Post))
예제 #2
0
파일: users.py 프로젝트: CalPolyIEEE/ieee
def get(id):
    return jsonify(get_item(id, 'profile', User))
예제 #3
0
def get(id):
    return jsonify(get_item(id, 'project', Project))