25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin_example.py 292 B

12345678910
  1. from core.models import Image
  2. from django_images.models import Thumbnail
  3. class Plugin:
  4. def process_image_pre_creation(self, django_settings, image_instance: Image):
  5. pass
  6. def process_thumbnail_pre_creation(self, django_settings, thumbnail_instance: Thumbnail):
  7. pass