Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
Fix baseline for change made in domaindrivendev#2942 that pre-dated the verification tests being added.
  • Loading branch information
martincostello committed Jul 1, 2024
1 parent 65a8035 commit abc90ad
Showing 1 changed file with 56 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,21 @@
}
}
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
}
},
"security": [
{
"oauth2": [
"readAccess"
]
}
]
},
"post": {
"tags": [
Expand Down Expand Up @@ -73,8 +86,21 @@
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
}
},
"security": [
{
"oauth2": [
"writeAccess"
]
}
]
}
},
"/products/{id}": {
Expand Down Expand Up @@ -113,8 +139,21 @@
}
}
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
}
},
"security": [
{
"oauth2": [
"readAccess"
]
}
]
},
"delete": {
"tags": [
Expand All @@ -134,8 +173,21 @@
"responses": {
"200": {
"description": "OK"
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
}
}
},
"security": [
{
"oauth2": [
"writeAccess"
]
}
]
}
}
},
Expand Down

0 comments on commit abc90ad

Please sign in to comment.