Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 825 Bytes

security.rst

File metadata and controls

23 lines (15 loc) · 825 Bytes

Configure Stateless Security Firewalls

The Symfony framework allows for the creation of stateless firewalls. In this case, the security token is not serialized for a session.

However, when API calls are utilized in AJAX requests from the UI, the user's token data from the current session must be used instead of the firewall credentials. For this purpose, the firewall should have the |context1| parameter with the context name that the system can use to authenticate the user.

For example:

security:
    firewalls:
        some_stateless_firewall_with_AJAX_requests:
            stateless: true
            context:   main
            # ...