diff --git a/scipost/views.py b/scipost/views.py index 21cf9f70b89297a6c54660a973e280d9ce507eb7..efdec24ed6a58c2b28dbec591c325d3a752c4082 100644 --- a/scipost/views.py +++ b/scipost/views.py @@ -130,10 +130,11 @@ def index(request): def protected_serve(request, path, show_indexes=False): - """Serve media files from outside the public MEDIA_ROOT folder. + """ + Serve media files from outside the public MEDIA_ROOT folder. Serve files that are saved outside the default MEDIA_ROOT folder for superusers only! - This will be usefull eg. in the admin pages. + This will be useful eg. in the admin pages. """ if not request.user.is_authenticated or not request.user.is_superuser: # Only superusers may get to see secure files without an explicit serve method!