/
vshmidt
/
django
Обзор
Документация
Войти
/
vshmidt
/
django
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/model_fields/storage.py
6 строк
233 B
John Parton
Fixed #35139 -- Prevented file read after ImageField is saved to storage.
22 май 2024, 01:25
22 май 2024, 01:25
9c5fe93
Код
Авторство
О чём код?
from django.core.files.storage.filesystem import FileSystemStorage class NoReadFileSystemStorage(FileSystemStorage): def open(self, *args, **kwargs): raise AssertionError("This storage class does not support reading.")