Skip to content

Commit

Permalink
fix(Plane): enable email password login
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Miglinci <[email protected]>
  • Loading branch information
pmig committed Nov 2, 2023
1 parent 5841bb7 commit 43572fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ class PlaneBackendConfigMap : CRUDKubernetesDependentResource<ConfigMap, Plane>(
"WEB_URL" to "https://${spec.host}/",
"DEFAULT_EMAIL" to spec.defaultUser.email,
"DEFAULT_PASSWORD" to spec.defaultUser.password,
"ENABLE_SIGNUP" to if (spec.registrationEnabled) "1" else "0"
"ENABLE_SIGNUP" to if (spec.registrationEnabled) "1" else "0",
"ENABLE_EMAIL_PASSWORD" to "1"
)

private val Plane.smtpData
Expand Down

0 comments on commit 43572fc

Please sign in to comment.