mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 09:55:50 +01:00
11 lines
292 B
Python
11 lines
292 B
Python
from core.models import Image
|
|
from django_images.models import Thumbnail
|
|
|
|
|
|
class Plugin:
|
|
def process_image_pre_creation(self, django_settings, image_instance: Image):
|
|
pass
|
|
|
|
def process_thumbnail_pre_creation(self, django_settings, thumbnail_instance: Thumbnail):
|
|
pass
|