Skip to content
Snippets Groups Projects
Commit 993e407c authored by Tobias Gross-Vogt's avatar Tobias Gross-Vogt
Browse files

#31661: kebap case refactoring for url paths

parent a30fd7c3
Branches
Tags
No related merge requests found
Pipeline #108936 failed
......@@ -19,7 +19,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* collectionOperations={
* "get" = {
* "path" = "/checkin/check_in_actions",
* "path" = "/checkin/check-in-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "normalization_context" = {
* "groups" = {"Checkin:output", "Checkin:outputList"}
......@@ -39,7 +39,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* },
* "post" = {
* "path" = "/checkin/check_in_actions",
* "path" = "/checkin/check-in-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "method" = "POST",
* "openapi_context" = {
......@@ -57,7 +57,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* itemOperations={
* "get" = {
* "path" = "/checkin/check_in_actions/{identifier}",
* "path" = "/checkin/check-in-actions/{identifier}",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "openapi_context" = {
* "tags" = {"Checkin"},
......
......@@ -19,14 +19,14 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* collectionOperations={
* "get" = {
* "path" = "/checkin/check_out_actions",
* "path" = "/checkin/check-out-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "openapi_context" = {
* "tags" = {"Checkin"},
* },
* },
* "post" = {
* "path" = "/checkin/check_out_actions",
* "path" = "/checkin/check-out-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "method" = "POST",
* "openapi_context" = {
......@@ -44,7 +44,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* itemOperations={
* "get" = {
* "path" = "/checkin/check_out_actions/{identifier}",
* "path" = "/checkin/check-out-actions/{identifier}",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "openapi_context" = {
* "tags" = {"Checkin"},
......
......@@ -19,7 +19,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* collectionOperations={
* "get" = {
* "path" = "/checkin/guest_check_in_actions",
* "path" = "/checkin/guest-check-in-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "normalization_context" = {
* "groups" = {"Checkin:output", "Checkin:outputList"}
......@@ -39,7 +39,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* },
* "post" = {
* "path" = "/checkin/guest_check_in_actions",
* "path" = "/checkin/guest-check-in-actions",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "method" = "POST",
* "openapi_context" = {
......@@ -57,7 +57,7 @@ use Symfony\Component\Validator\Constraints as Assert;
* },
* itemOperations={
* "get" = {
* "path" = "/checkin/guest_check_in_actions/{identifier}",
* "path" = "/checkin/guest-check-in-actions/{identifier}",
* "security" = "is_granted('IS_AUTHENTICATED_FULLY')",
* "openapi_context" = {
* "tags" = {"Checkin"},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment