You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
292 B

  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