示例#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)