Prevent local storage setup on non-mounted paths

Fixes #269
This commit is contained in:
Joseph Schorr 2015-07-27 14:32:02 -04:00
parent 66aaf0e4a2
commit 26ae629189
3 changed files with 24 additions and 1 deletions

View file

@ -58,6 +58,10 @@ class BaseStorage(StoragePaths):
""" Called to perform any storage system setup. """
pass
def validate(self):
""" Called to perform any custom storage system validation. """
pass
def get_direct_download_url(self, path, expires_in=60, requires_cors=False):
return None