microblog.pub/startup.py

13 lines
381 B
Python
Raw Permalink Normal View History

2019-09-08 09:57:00 -05:00
import app # noqa: F401 # here to init the backend
from core.activitypub import _actor_hash
from core.shared import MY_PERSON
from core.shared import p
from core.tasks import Tasks
from utils.local_actor_cache import is_actor_updated
h = _actor_hash(MY_PERSON, local=True)
if is_actor_updated(h):
Tasks.send_actor_update()
p.push({}, "/task/cleanup", schedule="@every 1h")