(taskId, projectId, filename)
| 75 | |
| 76 | |
| 77 | def assets_directory_path(taskId, projectId, filename): |
| 78 | # files will be uploaded to MEDIA_ROOT/project/<id>/task/<id>/<filename> |
| 79 | return '{0}{1}'.format(task_directory_path(taskId, projectId), filename) |
| 80 | |
| 81 | |
| 82 | def gcp_directory_path(task, filename): |
no test coverage detected