Change smartcam detection features to category config (#1402)
Some checks are pending
CI / Perform linting checks (3.13) (push) Waiting to run
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, macos-latest, 3.11) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, macos-latest, 3.12) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, macos-latest, 3.13) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, ubuntu-latest, 3.11) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, ubuntu-latest, 3.12) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, ubuntu-latest, 3.13) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, windows-latest, 3.11) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, windows-latest, 3.12) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (false, windows-latest, 3.13) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (true, ubuntu-latest, 3.11) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (true, ubuntu-latest, 3.12) (push) Blocked by required conditions
CI / Python ${{ matrix.python-version}} on ${{ matrix.os }}${{ fromJSON('[" (extras)", ""]')[matrix.extras == ''] }} (true, ubuntu-latest, 3.13) (push) Blocked by required conditions
CodeQL checks / Analyze (python) (push) Waiting to run

This commit is contained in:
Steven B. 2025-01-03 07:08:23 +00:00 committed by GitHub
parent 5d49623d5d
commit 361697a239
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ class BabyCryDetection(SmartCamModule):
attribute_getter="enabled", attribute_getter="enabled",
attribute_setter="set_enabled", attribute_setter="set_enabled",
type=Feature.Type.Switch, type=Feature.Type.Switch,
category=Feature.Category.Primary, category=Feature.Category.Config,
) )
) )

View File

@ -30,7 +30,7 @@ class MotionDetection(SmartCamModule):
attribute_getter="enabled", attribute_getter="enabled",
attribute_setter="set_enabled", attribute_setter="set_enabled",
type=Feature.Type.Switch, type=Feature.Type.Switch,
category=Feature.Category.Primary, category=Feature.Category.Config,
) )
) )

View File

@ -30,7 +30,7 @@ class PersonDetection(SmartCamModule):
attribute_getter="enabled", attribute_getter="enabled",
attribute_setter="set_enabled", attribute_setter="set_enabled",
type=Feature.Type.Switch, type=Feature.Type.Switch,
category=Feature.Category.Primary, category=Feature.Category.Config,
) )
) )

View File

@ -30,7 +30,7 @@ class TamperDetection(SmartCamModule):
attribute_getter="enabled", attribute_getter="enabled",
attribute_setter="set_enabled", attribute_setter="set_enabled",
type=Feature.Type.Switch, type=Feature.Type.Switch,
category=Feature.Category.Primary, category=Feature.Category.Config,
) )
) )