diff --git a/activities/models/post_attachment.py b/activities/models/post_attachment.py index d7c5474..4e1c9c3 100644 --- a/activities/models/post_attachment.py +++ b/activities/models/post_attachment.py @@ -8,16 +8,11 @@ from stator.models import State, StateField, StateGraph, StatorModel class PostAttachmentStates(StateGraph): - new = State(try_interval=30000) + new = State(externally_progressed=True) fetched = State() new.transitions_to(fetched) - @classmethod - async def handle_new(cls, instance): - # TODO: Fetch images to our own media storage - pass - class PostAttachment(StatorModel): """