Skip to content

Commit

Permalink
Merge pull request #5 from BecauseOfProg/develop
Browse files Browse the repository at this point in the history
fix: fix content returning from devblog posts
  • Loading branch information
Théo Vidal authored Sep 9, 2020
2 parents 0e6f32b + 7fc7bb1 commit 5ab6d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Post(db.Entity):
title = Required(str, max_len=64)
category = Required(str, max_len=20)
banner = Optional(str, default='')
content = Required(LongStr)
content = Required(str)
author = Required(str)
timestamp = Required(int, unique=True)

Expand Down

0 comments on commit 5ab6d43

Please sign in to comment.