From 2092d586ab9a48c4573799f6a2ae66abb237746e Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 16 Apr 2025 10:15:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8(backend)=20harmonize=20decorator?= =?UTF-8?q?=20actions=20to=20lowercase=20format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Standardize all method decorator actions to lowercase format following DRF documentation conventions. Creates consistent style across codebase. --- src/backend/core/api/viewsets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/core/api/viewsets.py b/src/backend/core/api/viewsets.py index 53ebda01..5270ec69 100644 --- a/src/backend/core/api/viewsets.py +++ b/src/backend/core/api/viewsets.py @@ -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],