From 49b8905043f74e890a41b8068eb01cd4284a6923 Mon Sep 17 00:00:00 2001 From: paulb Date: Tue, 20 Feb 2024 18:57:27 +0100 Subject: [PATCH 1/2] Fix basic auth environment variable --- conf/application.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/application.conf b/conf/application.conf index f1bf3e3..01c3b75 100644 --- a/conf/application.conf +++ b/conf/application.conf @@ -222,7 +222,7 @@ smui.auth.clients.SAML2Client { # The DirectBasicAuthClient configuration which is used *only* when the DirectBasicAuthClient is configured as smui.auth.client smui.auth.clients.ConfiguredDirectBasicAuthClient { username = "smui_user" - username = ${?SMUI_BASIC_AUTH_PASS} + username = ${?SMUI_BASIC_AUTH_USER} password = "smui_pass" password = ${?SMUI_BASIC_AUTH_PASS} } From edec26e0d269684fb2dc10ce8f9422d22a41f92e Mon Sep 17 00:00:00 2001 From: paulb Date: Tue, 20 Feb 2024 19:09:18 +0100 Subject: [PATCH 2/2] Update version --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 3ab2e03..968d24f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ import com.typesafe.sbt.GitBranchPrompt name := "search-management-ui" -version := "4.0.7" +version := "4.0.8" maintainer := "Contact productful.io " scalaVersion := "2.12.17"