mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-06 07:29:04 +00:00
eb6b3ba1df
Update a room's access level and/or configuration using PATCH from the external API. Log modifications and send to analytics.
15 lines
362 B
Python
15 lines
362 B
Python
"""Catalog of all analytics events emitted by the backend."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class AnalyticsEvent(StrEnum):
|
|
"""All trackable events. Values are the wire names sent to the provider."""
|
|
|
|
# Rooms
|
|
ROOM_CREATED = "room_created"
|
|
ROOM_UPDATED = "room_updated"
|
|
|
|
# Roomkit (meeting-room SIP devices)
|
|
ROOMKIT_JOINED = "roomkit_joined"
|