Files
mayan-edms/mayan/apps/dependencies/management/commands/checkdependencies.py
Roberto Rosario 54acf0f254 Add the checkdependencies command
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-05-15 14:56:31 -04:00

13 lines
284 B
Python

from __future__ import unicode_literals
from django.core import management
from ...classes import Dependency
class Command(management.BaseCommand):
help = 'Output the status of the defined dependencies.'
def handle(self, *args, **options):
Dependency.check_all()