add cli command to show post details

pull/2/head
lza_menace 3 years ago
parent e14131d4e2
commit 8ab985b88e

@ -119,5 +119,14 @@ def remove_admin(username):
else:
print("That moderator doesn't exist")
@app.cli.command("show")
@click.argument("post_id")
def post_id(post_id):
p = Post.filter(id=post_id).first()
if p:
print(p.show())
else:
print("That post doesn't exist")
if __name__ == "__main__":
app.run()