feat(user-sessions): remove debug print statement from login_Post method

This commit is contained in:
2025-10-30 10:46:19 +01:00
committed by Janis
parent 76bde997ef
commit 992dd8f11c

View File

@@ -62,7 +62,6 @@ class UserController @Inject()(val controllerComponents: ControllerComponents, v
def login_Post(): Action[AnyContent] = {
Action { implicit request =>
val postData = request.body.asFormUrlEncoded
println(request.body.asText)
if (postData.isDefined) {
// Extract username and password from form data
val username = postData.get.get("username").flatMap(_.headOption).getOrElse("")