From 8bbd3eca62f31679f3ec5547ae4e9bd76f922b9a Mon Sep 17 00:00:00 2001 From: BinamB Date: Thu, 3 Mar 2022 14:48:00 -0600 Subject: [PATCH 1/2] Document fence-create --append info --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 233cc37c91..87d46489e7 100644 --- a/README.md +++ b/README.md @@ -524,6 +524,11 @@ fence-create client-modify --client CLIENT_NAME --urls http://localhost/api/v0/o That command should output any modifications to the client. Similarly, multiple URLs are allowed here too. +Add `--append` argument to add to existing client `--urls` or `--allowed-scopes` +```bash +fence-create client-modify --client CLIENT_NAME --urls http://localhost/api/v0/new/oauth2/authorize --append +``` + #### Delete OAuth Client ```bash From 7a31b364776be40e08750dfeddfa5298b08ce34a Mon Sep 17 00:00:00 2001 From: BinamB Date: Thu, 3 Mar 2022 14:51:37 -0600 Subject: [PATCH 2/2] add more info --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87d46489e7..016812a9a0 100644 --- a/README.md +++ b/README.md @@ -524,7 +524,7 @@ fence-create client-modify --client CLIENT_NAME --urls http://localhost/api/v0/o That command should output any modifications to the client. Similarly, multiple URLs are allowed here too. -Add `--append` argument to add to existing client `--urls` or `--allowed-scopes` +Add `--append` argument to add new callback urls or allowed scopes to existing client using `--append --urls` or `--append --allowed-scopes` ```bash fence-create client-modify --client CLIENT_NAME --urls http://localhost/api/v0/new/oauth2/authorize --append ```