https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: a46c7994e5147e36e58c9384924e3acb70829409 authored by Jenkins for Software Heritage on 09 October 2019, 09:36:48 UTC
Updated backport on buster-swh from debian/0.0.74-1_swh1 (unstable-swh)
Tip revision: a46c799
apps.py
# Copyright (C) 2017  The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information

from django.apps import AppConfig


class DepositConfig(AppConfig):
    name = 'swh.deposit'

    def ready(self):
        super().ready()

        # install the signal permitting to trigger the status' check
        from .signals import post_deposit_save  # noqa
back to top