From e8455af3365064db9af2374c547338ab654e3ed2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Weigert?= Date: Tue, 23 Apr 2024 10:51:43 +0200 Subject: [PATCH] Fix: README.md ocmproviders.json example The trailing comma is a syntax error, the correct name is not providers.json, but ocmproviders.json (The table in https://doc.owncloud.com/ocis/5.0/deployment/services/s-list/ocm.html#environment-variables has the name spelled with a hyphen, this is misleading, as it is just a soft-hyphen due to the narrow column, and the hyphen disappears during copy/paste. ) --- services/ocm/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/ocm/README.md b/services/ocm/README.md index 1cb1655b15..0b28234e2c 100644 --- a/services/ocm/README.md +++ b/services/ocm/README.md @@ -19,7 +19,7 @@ The `ocm` services implements an invitation workflow which needs to be followed The list of trusted instances is managed by the `ocmproviderauthorizer` service. The only supported backend currently is `json` which stores the list in a json file on disk. -Example `providers.json` file: +Example `ocmproviders.json` file: ``` [ { @@ -43,7 +43,7 @@ Example `providers.json` file: "host": "example.com" } ] - }, + } ] ```