diff options
author | Joas Schilling <coding@schilljs.com> | 2024-04-12 12:55:59 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-04-12 13:00:20 +0200 |
commit | bbaaaf4b91beb6ade321c082d3f8231216eb368b (patch) | |
tree | acd719804c6ce5c9bf1a097a261d75f3c7ac7528 /core | |
parent | 715077ea70f0ed18d1f742a4ef3486e4bfa1b111 (diff) | |
download | nextcloud-server-bbaaaf4b91beb6ade321c082d3f8231216eb368b.tar.gz nextcloud-server-bbaaaf4b91beb6ade321c082d3f8231216eb368b.zip |
feat(capabilities): Expose if mod-rewrite is working via capabilities
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/openapi.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/openapi.json b/core/openapi.json index f854e42ced7..6bf9cae13db 100644 --- a/core/openapi.json +++ b/core/openapi.json @@ -98,7 +98,8 @@ "pollinterval", "webdav-root", "reference-api", - "reference-regex" + "reference-regex", + "mod-rewrite-working" ], "properties": { "pollinterval": { @@ -113,6 +114,9 @@ }, "reference-regex": { "type": "string" + }, + "mod-rewrite-working": { + "type": "boolean" } } } |