🎨(backend) harmonize decorator actions to lowercase format

Standardize all method decorator actions to lowercase format following DRF
documentation conventions. Creates consistent style across codebase.
This commit is contained in:
lebaudantoine
2025-04-16 10:15:06 +02:00
committed by aleb_the_flash
parent 132a1fbac7
commit 2092d586ab

View File

@@ -366,7 +366,7 @@ class RoomViewSet(
@decorators.action(
detail=True,
methods=["POST"],
methods=["post"],
url_path="request-entry",
permission_classes=[],
throttle_classes=[RequestEntryAnonRateThrottle],
@@ -449,7 +449,7 @@ class RoomViewSet(
@decorators.action(
detail=False,
methods=["POST"],
methods=["post"],
url_path="webhooks-livekit",
permission_classes=[],
)
@@ -475,7 +475,7 @@ class RoomViewSet(
@decorators.action(
detail=False,
methods=["POST"],
methods=["post"],
url_path="creation-callback",
permission_classes=[],
throttle_classes=[CreationCallbackAnonRateThrottle],