Home Assistant Unofficial Reference 2024.12.1
system_policies.py
Go to the documentation of this file.
1 """System policies."""
2 
3 from .const import CAT_ENTITIES, POLICY_READ, SUBCAT_ALL
4 
5 ADMIN_POLICY = {CAT_ENTITIES: True}
6 
7 USER_POLICY = {CAT_ENTITIES: True}
8 
9 READ_ONLY_POLICY = {CAT_ENTITIES: {SUBCAT_ALL: {POLICY_READ: True}}}