mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-23 07:33:58 -06:00
Merge pull request #2115 from acelaya-forks/feature/fix-oas-docs
Fix typo in OAS docs
This commit is contained in:
parent
83584a3175
commit
c6109fd396
@ -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
|
||||||
|
@ -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"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user