Skip to content

Commit

Permalink
Merge branch 'branches/rudder/7.3' into branches/rudder/8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins CI committed Jan 5, 2024
2 parents 9cbbbed + 906248d commit 8fe0a0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ object AuthBackendsConf extends RudderPluginModule {

override def allowedToUseBackend(name: String): Boolean = {
// same behavior for all authentication backends: only depends on the plugin status
pluginStatusService.isEnabled
pluginStatusService.isEnabled()
}
}

Expand All @@ -150,7 +150,7 @@ object AuthBackendsConf extends RudderPluginModule {
override def authenticationBackends: Set[String] = oauthBackendNames
override def name: String =
s"Oauth2 and OpenID Connect authentication backends provider: '${authenticationBackends.mkString("','")}"
override def allowedToUseBackend(name: String): Boolean = pluginStatusService.isEnabled
override def allowedToUseBackend(name: String): Boolean = pluginStatusService.isEnabled()
})

lazy val isOauthConfiguredByUser = {
Expand Down

0 comments on commit 8fe0a0c

Please sign in to comment.