Enable dhcp flows for axis registered devices (#66581)

References:
https://github.com/home-assistant/developers.home-assistant/pull/1212
https://github.com/home-assistant/core/pull/66528

I am doing these one at a time to make sure codeowners are aware
and do not glance over the PR because it has a lot of integrations
in it
This commit is contained in:
J. Nick Koston 2022-02-15 14:32:10 -06:00 committed by GitHub
parent 30528e0de0
commit c5ae43144d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
"documentation": "https://www.home-assistant.io/integrations/axis", "documentation": "https://www.home-assistant.io/integrations/axis",
"requirements": ["axis==44"], "requirements": ["axis==44"],
"dhcp": [ "dhcp": [
{"registered_devices": true},
{ {
"hostname": "axis-00408c*", "hostname": "axis-00408c*",
"macaddress": "00408C*" "macaddress": "00408C*"

View File

@ -11,6 +11,7 @@ DHCP: list[dict[str, str | bool]] = [
{'domain': 'august', 'hostname': 'connect', 'macaddress': 'B8B7F1*'}, {'domain': 'august', 'hostname': 'connect', 'macaddress': 'B8B7F1*'},
{'domain': 'august', 'hostname': 'connect', 'macaddress': '2C9FFB*'}, {'domain': 'august', 'hostname': 'connect', 'macaddress': '2C9FFB*'},
{'domain': 'august', 'hostname': 'august*', 'macaddress': 'E076D0*'}, {'domain': 'august', 'hostname': 'august*', 'macaddress': 'E076D0*'},
{'domain': 'axis', 'registered_devices': True},
{'domain': 'axis', 'hostname': 'axis-00408c*', 'macaddress': '00408C*'}, {'domain': 'axis', 'hostname': 'axis-00408c*', 'macaddress': '00408C*'},
{'domain': 'axis', 'hostname': 'axis-accc8e*', 'macaddress': 'ACCC8E*'}, {'domain': 'axis', 'hostname': 'axis-accc8e*', 'macaddress': 'ACCC8E*'},
{'domain': 'axis', 'hostname': 'axis-b8a44f*', 'macaddress': 'B8A44F*'}, {'domain': 'axis', 'hostname': 'axis-b8a44f*', 'macaddress': 'B8A44F*'},