payment
Browse files
App/Transcription/TranscriptionRoutes.py
CHANGED
@@ -103,7 +103,7 @@ async def create_file(
|
|
103 |
|
104 |
# create a transcription entry
|
105 |
transcription_enrty = await Transcriptions.objects.create(
|
106 |
-
task_id=task.id, user=user
|
107 |
)
|
108 |
background_tasks.add_task(perform_background_task, file=file, task_id=task.id)
|
109 |
return {
|
|
|
103 |
|
104 |
# create a transcription entry
|
105 |
transcription_enrty = await Transcriptions.objects.create(
|
106 |
+
task_id=task.id, user=user, file_name=file.filename
|
107 |
)
|
108 |
background_tasks.add_task(perform_background_task, file=file, task_id=task.id)
|
109 |
return {
|