예제 #1
0
파일: board.py 프로젝트: m-ober/byceps
def create_posting(topic, creator, body):
    return Posting.create(topic, creator, body)
예제 #2
0
파일: board.py 프로젝트: m-ober/byceps
def create_posting(topic, creator, *, number=1, body=None):
    if body is None:
        body = 'Inhalt von Beitrag {}.'.format(number)

    return Posting.create(topic, creator, body)