https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: 03fc6b9fac659b20bd82f39c5da833de6e7f86ea authored by Antoine R. Dumont (@ardumont) on 30 November 2017, 15:14:48 UTC
setup: Update dependency range
Tip revision: 03fc6b9
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