From 46656303b89684d029f6e4c1fa4b2087f16f127c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Mon, 22 Dec 2025 09:53:20 +0100 Subject: [PATCH] Assume sets child auth at to now + explicit auth method setting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- pkg/iam/session_service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/iam/session_service.go b/pkg/iam/session_service.go index c4fab04ee..0b5662127 100644 --- a/pkg/iam/session_service.go +++ b/pkg/iam/session_service.go @@ -393,8 +393,8 @@ func (s SessionService) AssumeOrganizationSession( TenantID: &tenantID, MembershipID: &membership.ID, ParentSessionID: &rootSession.ID, - AuthMethod: rootSession.AuthMethod, - AuthenticatedAt: rootSession.AuthenticatedAt, + AuthMethod: coredata.AuthMethodPassword, + AuthenticatedAt: now, ExpiredAt: rootSession.ExpiredAt, CreatedAt: now, UpdatedAt: now,