From ec66aaf0298c393e4ccfb8c4616d4103357de822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Sat, 11 Jan 2020 21:15:03 +0100 Subject: [PATCH] Fix external_apps config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index dd78e40a8..211cb16aa 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -65,7 +65,7 @@ type OIDC struct { // } // } type ExternalApp struct { - Name string `json:"name,omitempty"` + ID string `json:"id,omitempty"` Path string `json:"path,omitempty"` // Config is completely dynamic, because it depends on the extension Config map[string]interface{} `json:"config,omitempty"`