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