allow no secret for static public clients

For statically-configured public clients it should be allowed for both
Secret and SecretEnv fields to be empty.
This commit is contained in:
Tomasz Kleczek 2020-05-05 17:03:12 +02:00 committed by Tomasz Kleczek
parent 0a85a97ba9
commit c830d49884
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ func serve(cmd *cobra.Command, args []string) error {
}
c.StaticClients[i].ID = os.Getenv(client.IDEnv)
}
if client.Secret == "" && client.SecretEnv == "" {
if client.Secret == "" && client.SecretEnv == "" && !client.Public {
return fmt.Errorf("invalid config: Secret or SecretEnv field is required for client %q", client.ID)
}
if client.SecretEnv != "" {