Skip to content

Commit be9af73

Browse files
committed
Fix old tictactoe example
1 parent 56dfb26 commit be9af73

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

examples/v3.1/tictactoe.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ paths:
2424
schema:
2525
$ref: "#/components/schemas/status"
2626
security:
27-
apiKey: []
28-
app2AppOauth:
29-
- board:read
27+
- apiKey: []
28+
- app2AppOauth:
29+
- board:read
3030

3131
# Single square operations
3232
/board/{row}/{column}:
@@ -54,9 +54,9 @@ paths:
5454
$ref: "#/components/schemas/errorMessage"
5555
example: "Illegal coordinates"
5656
security:
57-
bearerHttpAuthentication: []
58-
user2AppOauth:
59-
- board:read
57+
- bearerHttpAuthentication: []
58+
- user2AppOauth:
59+
- board:read
6060
put:
6161
summary: Set a single board square
6262
description: Places a mark on the board and retrieves the whole board and the winner (if any).
@@ -90,9 +90,9 @@ paths:
9090
invalidMark:
9191
value: "Invalid Mark (X or O)."
9292
security:
93-
bearerHttpAuthentication: []
94-
user2AppOauth:
95-
- board:write
93+
- bearerHttpAuthentication: []
94+
- user2AppOauth:
95+
- board:write
9696

9797
components:
9898
parameters:

0 commit comments

Comments
 (0)