diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-16 18:19:26 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-16 18:19:26 +0100 |
| commit | 15d9d864b539e221c6494b3535abef724517f207 (patch) | |
| tree | 1867734ad4740625848c69cd05f5497c21282b0c /cli | |
| parent | 901beb4df2c074ba54fedc91dd6e780cebe093d1 (diff) | |
uploading audio files and displaying them in a list
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/app/sql/models/upload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/app/sql/models/upload.py b/cli/app/sql/models/upload.py index 30e53dc..d9307ff 100644 --- a/cli/app/sql/models/upload.py +++ b/cli/app/sql/models/upload.py @@ -37,5 +37,5 @@ class Upload(Base): def url(self): if self.tag: - return join('/static/data_store/uploads', str(self.graph_id), self.tag, self.fn) - return join('/static/data_store/uploads', str(self.graph_id), self.fn) + return join('/static/uploads', str(self.graph_id), self.tag, self.fn) + return join('/static/uploads', str(self.graph_id), self.fn) |
