From 07bb4a179ee613e8bbff7c422bb8a9c26eb942f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 23 Jul 2021 09:42:40 +0000 Subject: [PATCH] clarify cs3 claims MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- proxy/pkg/flagset/flagset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/pkg/flagset/flagset.go b/proxy/pkg/flagset/flagset.go index cf6efe761..79522c4e1 100644 --- a/proxy/pkg/flagset/flagset.go +++ b/proxy/pkg/flagset/flagset.go @@ -254,7 +254,7 @@ func ServerWithConfig(cfg *config.Config) []cli.Flag { &cli.StringFlag{ Name: "user-cs3-claim", Value: flags.OverrideDefaultString(cfg.UserCS3Claim, "mail"), - Usage: "The claim to use when looking up a user in the CS3 API, eg. 'userid' or 'mail'", + Usage: "The CS3 claim to use when looking up a user in the CS3 users API, eg. 'userid', 'username' or 'mail'", EnvVars: []string{"PROXY_USER_CS3_CLAIM"}, Destination: &cfg.UserCS3Claim, },