mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
44bfcffca4
* refactor weekly email task to schedule one async job per team * optimise async email processing * turns on weekly email cron job if env var is True * ensure weekly report emails are sent only once to each email address * fix mypy
19 lines
578 B
Python
19 lines
578 B
Python
"""
|
|
Django settings for PostHog Enterprise Edition.
|
|
"""
|
|
from typing import Dict
|
|
|
|
from posthog.settings import CLICKHOUSE, PRIMARY_DB, TEST
|
|
|
|
# Zapier
|
|
HOOK_EVENTS: Dict[str, str] = {
|
|
# "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"
|
|
|
|
KAFKA_ENABLED = PRIMARY_DB == CLICKHOUSE and not TEST
|