I’ve created an Event Handler where I make use of the User Local to decide what should happen. It’s working fine for authenticated users, but obviously not for not authenticated users.
Is there any way to get the user locale of the user’s device resp. the user’s browser?
Got it. In this case, the approach I’d recommend would look like this:
Create an API service that would be responsible for retrieving the data from the database (it can be done with codeless)
One of the arguments for the API service would be the client locale. When the service retrieves the data from the database, it performs the required filtering of the data based on the locale parameter.