0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/ee/models/__init__.py
Michael Matloka 8b5ecc9f6f
Dashboard permissions base (#8394)
* Add models for dashboard permissions

* Update migrations

* Add basic API capabilities

* Add basic dashboard perms UI

* Update test_insight.ambr

* Fix typing

* Split RestrictionLevel into RestrictionLevel&PrivilegeLevel for clarity

* Update migrations post-merge
2022-02-02 17:16:35 +01:00

16 lines
450 B
Python

from .dashboard_privilege import DashboardPrivilege
from .event_definition import EnterpriseEventDefinition
from .explicit_team_membership import ExplicitTeamMembership
from .hook import Hook
from .license import License
from .property_definition import EnterprisePropertyDefinition
__all__ = [
"EnterpriseEventDefinition",
"ExplicitTeamMembership",
"DashboardPrivilege",
"Hook",
"License",
"EnterprisePropertyDefinition",
]