check posts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not
2023-07-13 21:26:04 +10:00
parent 9488d197dc
commit 3361533b62
4 changed files with 49 additions and 40 deletions

17
app.py
View File

@@ -66,9 +66,20 @@ def page_posts_from_db():
return render_template("interactive-posts.html", postos=postos)
# @app.route('/post_my_post', method=['POST'])
# def post_a_post():
# pass
@app.route('/post_my_post', method=['POST'])
def post_a_post():
postos = db.collection('posts')
novenkiy = {
'texto': 'next post is this',
}
#### TODO проверить как-то по-умному что мы таки его добавили
metadata = postos.insert(novenkiy, overwrite_mode='update')
return render_template("i-posts.html", postos=[novenkiy])
# @app.route('/post_my_file', method=['POST'])
# def post_a_file():