https://forge.softwareheritage.org/source/swh-deposit.git
Raw File
Tip revision: 51aa7e2306003f95b3cd151e5de8dafbe7ca0ca1 authored by Antoine R. Dumont (@ardumont) on 23 October 2017, 13:36:30 UTC
swh.deposit.api: Fix 500 error when browsing api through browser
Tip revision: 51aa7e2
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 deposit_on_status_ready_for_check  # noqa
back to top