fix: Disable the applet connection method when all applet hosts have is_active set to False

pull/13311/head
Bai 6 months ago committed by Bryan
parent 75df845024
commit 5d1829b998

@ -101,7 +101,7 @@ class AppletMethod:
from .models import Applet, AppletHost
methods = defaultdict(list)
has_applet_hosts = AppletHost.objects.all().exists()
has_applet_hosts = AppletHost.objects.filter(is_active=True).exists()
applets = Applet.objects.filter(is_active=True)
for applet in applets:
for protocol in applet.protocols:

Loading…
Cancel
Save