Skip to content

Commit 84bc204

Browse files
committed
fix path param syntax in openapi example
1 parent d92d839 commit 84bc204

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

javalin5/javalin-openapi-example/src/main/java/io/javalin/example/java/user/UserController.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void getAll(Context ctx) {
4343
@OpenApi(
4444
summary = "Get user by ID",
4545
operationId = "getUserById",
46-
path = "/users/:userId",
46+
path = "/users/{userId}",
4747
methods = HttpMethod.GET,
4848
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
4949
tags = {"User"},
@@ -65,7 +65,7 @@ public static void getOne(Context ctx) {
6565
@OpenApi(
6666
summary = "Update user by ID",
6767
operationId = "updateUserById",
68-
path = "/users/:userId",
68+
path = "/users/{userId}",
6969
methods = HttpMethod.PATCH,
7070
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
7171
tags = {"User"},
@@ -90,7 +90,7 @@ public static void update(Context ctx) {
9090
@OpenApi(
9191
summary = "Delete user by ID",
9292
operationId = "deleteUserById",
93-
path = "/users/:userId",
93+
path = "/users/{userId}",
9494
methods = HttpMethod.DELETE,
9595
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
9696
tags = {"User"},

javalin6/javalin-openapi-example/src/main/java/io/javalin/example/java/user/UserController.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static void getAll(Context ctx) {
4343
@OpenApi(
4444
summary = "Get user by ID",
4545
operationId = "getUserById",
46-
path = "/users/:userId",
46+
path = "/users/{userId}",
4747
methods = HttpMethod.GET,
4848
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
4949
tags = {"User"},
@@ -65,7 +65,7 @@ public static void getOne(Context ctx) {
6565
@OpenApi(
6666
summary = "Update user by ID",
6767
operationId = "updateUserById",
68-
path = "/users/:userId",
68+
path = "/users/{userId}",
6969
methods = HttpMethod.PATCH,
7070
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
7171
tags = {"User"},
@@ -90,7 +90,7 @@ public static void update(Context ctx) {
9090
@OpenApi(
9191
summary = "Delete user by ID",
9292
operationId = "deleteUserById",
93-
path = "/users/:userId",
93+
path = "/users/{userId}",
9494
methods = HttpMethod.DELETE,
9595
pathParams = {@OpenApiParam(name = "userId", type = Integer.class, description = "The user ID")},
9696
tags = {"User"},

0 commit comments

Comments
 (0)