Skip to content

Commit

Permalink
Merge pull request #42673 from nextcloud/backport/42666/stable28
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin committed Jan 10, 2024
2 parents d2da55c + 94ebed0 commit c417281
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 36 deletions.
6 changes: 5 additions & 1 deletion apps/files/openapi.json
Expand Up @@ -1172,7 +1172,11 @@
"description": "Whether to copy the system templates to the template directory",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
18 changes: 15 additions & 3 deletions apps/files_sharing/openapi.json
Expand Up @@ -1483,7 +1483,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -2178,7 +2182,11 @@
"description": "Include tags in the share",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -2822,7 +2830,11 @@
"description": "If a global lookup should be performed too",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion apps/files_trashbin/openapi.json
Expand Up @@ -94,7 +94,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down
18 changes: 15 additions & 3 deletions apps/theming/openapi.json
Expand Up @@ -162,7 +162,11 @@
"description": "Let the browser decide the CSS priority",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -171,7 +175,11 @@
"description": "Include custom CSS",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -232,7 +240,11 @@
"description": "Return image as SVG",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand Down
6 changes: 5 additions & 1 deletion apps/user_ldap/openapi.json
Expand Up @@ -140,7 +140,11 @@
"description": "Whether to show the password",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
65 changes: 54 additions & 11 deletions core/openapi.json
Expand Up @@ -864,7 +864,11 @@
"schema": {
"type": "integer",
"nullable": true,
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -1046,7 +1050,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1055,7 +1063,11 @@
"description": "Force returning an icon",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1073,7 +1085,11 @@
"description": "Whether to fallback to the mime icon if no preview is available",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down Expand Up @@ -1177,7 +1193,11 @@
"description": "Whether to not crop the preview",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1186,7 +1206,11 @@
"description": "Force returning an icon",
"schema": {
"type": "integer",
"default": 1
"default": 1,
"enum": [
0,
1
]
}
},
{
Expand All @@ -1204,7 +1228,11 @@
"description": "Whether to fallback to the mime icon if no preview is available",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
}
],
Expand Down Expand Up @@ -1435,7 +1463,10 @@
"headers": {
"X-NEXTCLOUD-OCM-PROVIDERS": {
"schema": {
"type": "boolean"
"type": "boolean",
"enum": [
true
]
}
}
},
Expand Down Expand Up @@ -1648,7 +1679,11 @@
"description": "Rewrite URLs to absolute ones",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -1749,7 +1784,11 @@
"description": "Rewrite URLs to absolute ones",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down Expand Up @@ -3632,7 +3671,11 @@
"description": "Resolve the references",
"schema": {
"type": "integer",
"default": 0
"default": 0,
"enum": [
0,
1
]
}
},
{
Expand Down
49 changes: 33 additions & 16 deletions vendor-bin/openapi-extractor/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c417281

Please sign in to comment.