aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2017-03-07 11:54:54 +0100
committerneodarz <neodarz@neodarz.net>2017-03-07 11:54:54 +0100
commit33ab470b39edfe2caa12dd55b8a307ce6ededb34 (patch)
tree05e0224f05f80c05ac062d634b9989750c405c1d /web
parent2d7d92be4046f0eef03b8d7f4b5f851f4bc10ff0 (diff)
downloadthe_transcriber_backend-33ab470b39edfe2caa12dd55b8a307ce6ededb34.tar.xz
the_transcriber_backend-33ab470b39edfe2caa12dd55b8a307ce6ededb34.zip
Fix upload file internal error
Diffstat (limited to 'web')
-rw-r--r--web/models/audio_file_api.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/models/audio_file_api.ex b/web/models/audio_file_api.ex
index 802d179..a66cdc4 100644
--- a/web/models/audio_file_api.ex
+++ b/web/models/audio_file_api.ex
@@ -17,7 +17,7 @@ defmodule TheTranscriberBackend.AudioFileAPI do
"""
def changeset(struct, params \\ %{}) do
struct
- |> cast(params, [])
- |> validate_required([])
+ |> cast(params, [:audio_path, :audio_name, :audio_duration])
+ |> validate_required([:audio_path, :audio_name, :audio_duration])
end
end