예제 #1
0
def subscribe(postId):
    return PostController.subscribe(postId)
예제 #2
0
def unsubscribe(postId):
    return PostController.unsubscribe(postId)
예제 #3
0
def createComment(postId):
    return PostController.addComment(postId)
예제 #4
0
def list():
    return PostController.listPosts()
예제 #5
0
def show_post(postId):
    return PostController.showPost(postId)
예제 #6
0
def create_update_post(postId=None):
    return PostController.post(postId)
예제 #7
0
def show_post_editor(postId=None):
    return PostController.showPostEditor(postId)