mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
14 lines
424 B
Python
14 lines
424 B
Python
|
"""
|
||
|
Django settings for PostHog Enterprise Edition.
|
||
|
"""
|
||
|
|
||
|
# Zapier
|
||
|
HOOK_EVENTS = {
|
||
|
# "event_name": "App.Model.Action" (created/updated/deleted)
|
||
|
"action_defined": "posthog.Action.created_custom",
|
||
|
"action_performed": "posthog.Action.performed",
|
||
|
"annotation_created": "posthog.Annotation.created_custom",
|
||
|
}
|
||
|
HOOK_FINDER = "ee.models.hook.find_and_fire_hook"
|
||
|
HOOK_DELIVERER = "ee.models.hook.deliver_hook_wrapper"
|