🎨(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:
committed by
aleb_the_flash
parent
132a1fbac7
commit
2092d586ab
@@ -366,7 +366,7 @@ class RoomViewSet(
|
|||||||
|
|
||||||
@decorators.action(
|
@decorators.action(
|
||||||
detail=True,
|
detail=True,
|
||||||
methods=["POST"],
|
methods=["post"],
|
||||||
url_path="request-entry",
|
url_path="request-entry",
|
||||||
permission_classes=[],
|
permission_classes=[],
|
||||||
throttle_classes=[RequestEntryAnonRateThrottle],
|
throttle_classes=[RequestEntryAnonRateThrottle],
|
||||||
@@ -449,7 +449,7 @@ class RoomViewSet(
|
|||||||
|
|
||||||
@decorators.action(
|
@decorators.action(
|
||||||
detail=False,
|
detail=False,
|
||||||
methods=["POST"],
|
methods=["post"],
|
||||||
url_path="webhooks-livekit",
|
url_path="webhooks-livekit",
|
||||||
permission_classes=[],
|
permission_classes=[],
|
||||||
)
|
)
|
||||||
@@ -475,7 +475,7 @@ class RoomViewSet(
|
|||||||
|
|
||||||
@decorators.action(
|
@decorators.action(
|
||||||
detail=False,
|
detail=False,
|
||||||
methods=["POST"],
|
methods=["post"],
|
||||||
url_path="creation-callback",
|
url_path="creation-callback",
|
||||||
permission_classes=[],
|
permission_classes=[],
|
||||||
throttle_classes=[CreationCallbackAnonRateThrottle],
|
throttle_classes=[CreationCallbackAnonRateThrottle],
|
||||||
|
|||||||
Reference in New Issue
Block a user