mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-06 08:57:46 +00:00
80f3af0690
Introduce a new viewset that lets the roomkit start a room even when no WebRTC participant has joined yet. This is a first entry point that will be extended over time with more actions a roomkit needs to be able to trigger. Known limitations: * The responsibility around SIP rules is currently split between the telephony feature and the roomkit one. This may need a refactor later on to consolidate ownership in a single place. * The default throttle might be too low for production usage and will likely need to be revisited.
14 lines
328 B
Python
14 lines
328 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"
|
|
|
|
# Roomkit (meeting-room SIP devices)
|
|
ROOMKIT_JOINED = "roomkit_joined"
|