From 6b0af103caf24386b940ae454a9804d64240fe46 Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 6 Jun 2023 17:20:50 +0200 Subject: [PATCH] [docs-only] GRAPH_APPLICATION_ID envvar fix --- services/graph/pkg/config/application.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graph/pkg/config/application.go b/services/graph/pkg/config/application.go index c33af28652..95260259c8 100644 --- a/services/graph/pkg/config/application.go +++ b/services/graph/pkg/config/application.go @@ -2,6 +2,6 @@ package config // Application defines the available graph application configuration. type Application struct { - ID string `yaml:"id" env:"GRAPH_APPLICATION_ID" desc:"The ocis application id shown in the graph. All app roles are tied to this."` + ID string `yaml:"id" env:"GRAPH_APPLICATION_ID" desc:"The ocis application ID shown in the graph. All app roles are tied to this."` DisplayName string `yaml:"displayname" env:"GRAPH_APPLICATION_DISPLAYNAME" desc:"The oCIS application name"` }