aboutsummaryrefslogtreecommitdiff
path: root/web/views/audio_file_api_view.ex
diff options
context:
space:
mode:
Diffstat (limited to 'web/views/audio_file_api_view.ex')
-rw-r--r--web/views/audio_file_api_view.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/views/audio_file_api_view.ex b/web/views/audio_file_api_view.ex
index f5dbba9..1042be0 100644
--- a/web/views/audio_file_api_view.ex
+++ b/web/views/audio_file_api_view.ex
@@ -14,7 +14,7 @@ defmodule TheTranscriberBackend.AudioFileAPIView do
def render("audio_file_api.json", %{audio_file_api: audio_file_api}) do
%{id: audio_file_api.id,
audio_path: audio_file_api.audio_path,
- audio_transcription_file_path: audio_file_api.transcription_file_path,
+ audio_name: audio_file_api.audio_name,
audio_duration: audio_file_api.audio_duration}
end
end