예제 #1
0
파일: web.py 프로젝트: leotop/maildump
def get_messages():
    lightweight = not bool_arg(request.args.get('full'))
    return {'messages': db.get_messages(lightweight)}
예제 #2
0
def get_messages():
    lightweight = not bool_arg(request.args.get('full'))
    return {
        'messages': db.get_messages(lightweight)
    }