Merge pull request #2115 from acelaya-forks/feature/fix-oas-docs

Fix typo in OAS docs
This commit is contained in:
Alejandro Celaya 2024-04-29 15:22:32 +02:00 committed by GitHub
commit 194a7b0e57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
* *Nothing* * *Nothing*
### Fixed ### Fixed
* *Nothing* * [#2111](https://github.com/shlinkio/shlink/issues/2111) Fix typo in OAS docs examples where redirect rules with `query-param` condition type were defined as `query`.
## [4.1.0] - 2024-04-14 ## [4.1.0] - 2024-04-14

View File

@ -77,12 +77,12 @@
"priority": 3, "priority": 3,
"conditions": [ "conditions": [
{ {
"type": "query", "type": "query-param",
"matchKey": "foo", "matchKey": "foo",
"matchValue": "bar" "matchValue": "bar"
}, },
{ {
"type": "query", "type": "query-param",
"matchKey": "hello", "matchKey": "hello",
"matchValue": "world" "matchValue": "world"
} }
@ -209,12 +209,12 @@
"longUrl": "https://example.com/query-foo-bar-hello-world", "longUrl": "https://example.com/query-foo-bar-hello-world",
"conditions": [ "conditions": [
{ {
"type": "query", "type": "query-param",
"matchKey": "foo", "matchKey": "foo",
"matchValue": "bar" "matchValue": "bar"
}, },
{ {
"type": "query", "type": "query-param",
"matchKey": "hello", "matchKey": "hello",
"matchValue": "world" "matchValue": "world"
} }
@ -280,12 +280,12 @@
"priority": 3, "priority": 3,
"conditions": [ "conditions": [
{ {
"type": "query", "type": "query-param",
"matchKey": "foo", "matchKey": "foo",
"matchValue": "bar" "matchValue": "bar"
}, },
{ {
"type": "query", "type": "query-param",
"matchKey": "hello", "matchKey": "hello",
"matchValue": "world" "matchValue": "world"
} }