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