add cli command to show post details

This commit is contained in:
lza_menace 2021-04-15 10:37:15 -07:00
parent e14131d4e2
commit 8ab985b88e
1 changed files with 9 additions and 0 deletions

View File

@ -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()