Cookies with Django

2024-08-08 Thread אורי
Hi, Django uses cookies at least for authentication / login. How does Django handle the European Union legal requirements related to using cookies? For example, does the user have to agree before cookies are used? Thanks, Uri. אורי u...@speedy.net -- You received this message because you are su

Re: Django 5.1 - LoginRequiredMiddleware

2024-08-08 Thread אורי
Hi, I read the updated Django 5.1 release notes and I think now it's more clear that LoginRequiredMiddleware is only enabled if we enable it, and is not enabled by default. Thanks, Uri. אורי u...@speedy.net On Wed, Aug 7, 2024 at 9:29 AM Adam Johnson wrote: > I’ve opened a PR for a small docs

Re: Cookies with Django

2024-08-08 Thread Curtis Maloney
{I am not a lawyer. None of this is legal advice, of course.} Django itself does nothing to tell your users authentication uses cookies. If and how you choose to do that is up to you; also, there are some 3rd party apps to try to make this easier. However, I find this paragraph from https://gdp

Re: Cookies with Django

2024-08-08 Thread אורי
Thank you. אורי u...@speedy.net On Fri, Aug 9, 2024 at 5:40 AM Curtis Maloney wrote: > {I am not a lawyer. None of this is legal advice, of course.} > > Django itself does nothing to tell your users authentication uses cookies. > > If and how you choose to do that is up to you; also, there are