I am new to Ruby on Rails, but it seems like it is creating a new session every time a new user visits a website. The problem is that creating a session involves placing cookies in the user's browser, and the problem is that cookies are illegal in Europe !!!
In an exclusive technologically uninformed directive, the user must give his prior consent to any cookie placed on their computer, and if Ruby on Rails immediately sets a cookie, I have no chance to get consent. Immediately after the first visit to my application, the cookie probably has no purpose in terms of the functionality of the website, so the justification for โimplied consentโ will also be invalid in court.
So, is it possible to configure the RoR application so that it does not automatically create sessions?
ruby-on-rails cookies session-cookies session
lampak
source share