we can send now?
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-20 16:20:11 +10:00
parent 8415845488
commit 75958f9d9a

12
app.py
View File

@ -134,6 +134,18 @@ def post_a_post(post_key):
def post_to_post(post_key):
uploaded_file = request.files["file"]
if uploaded_file:
minioClient = Minio( "static.guaranteedstruggle.host" )
bucket_name = "thread-pics"
size = os.fstat(uploaded_file.fileno()).st_size
minioClient.put_object(
bucket_name, uploaded_file.filename, uploaded_file, size
)
postos = db.collection('posts')
data = request.form['send_this_text']