Ignacio G.

Results 5 comments of Ignacio G.

I keep feeling like I'm losing something on the flow... it doesn't look right to be serializing the SamlSpResponseToken instead of resolving the user straight away. I can work around...

:+1: And also the scrollToElement method does not trigger it...

Workaround: ``` $conn = $this->em->getConnection(); $sql = " INSERT INTO ...(...) VALUES(...) "; $stmt = $conn->prepare($sql); $stmt->bindValue(':somevalue', ...); .... $result = $stmt->execute(); ``` it's a very poor solution, if anyone...

Hi there! I have solved it by getting the session info, unserializing and getting the user: ``` private function getCurrentUser(Connection $connection) { $securityMain = $connection->Session->get('_security_main'); if($securityMain) { $securityMain = unserialize($securityMain);...