mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
8b5ecc9f6f
* 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
16 lines
450 B
Python
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",
|
|
]
|