openwebrx-clone/owrx/controllers/settings/backgrounddecoding.py
2021-02-15 15:56:17 +01:00

21 lines
655 B
Python

from owrx.controllers.settings import SettingsFormController, Section
from owrx.form import CheckboxInput, ServicesCheckboxInput
class BackgroundDecodingController(SettingsFormController):
def getTitle(self):
return "Background decoding"
def getSections(self):
return [
Section(
"Background decoding",
CheckboxInput(
"services_enabled",
"Service",
checkboxText="Enable background decoding services",
),
ServicesCheckboxInput("services_decoders", "Enabled services"),
),
]