|
@@ -116,7 +116,7 @@ async def get_courses(tags:List[int]):
|
|
|
for row in db.query(statement):
|
|
|
courses.append({'id':row['course_id'],'title':row['title'],'url':row['url']
|
|
|
,'teacher_name':['teacher_name'],'price':row['price'],'price_discount':row['price_discount'],'profile':row['profile']
|
|
|
- ,'cover_img':serverADDR + row['cover_img'],'hours':row['hours'],'units':row['units']})
|
|
|
+ ,'cover_img':'https://'+serverADDR + row['cover_img'],'hours':row['hours'],'units':row['units']})
|
|
|
return courses
|
|
|
|
|
|
@app.post("/courses")
|