Commit graph

3 commits

Author SHA1 Message Date
Daniel Gohlke
e8b9a8143b [FEATURE] Allow replacement of cookie implementation
The implementation is now extracted into an interface.
That way it is easier to replace the concrete implementation for cookie
handling
with a custom one.

Relates: #21
2025-02-10 09:04:50 +01:00
ca9d22298e Fix broken cookie handling on PHP side
Fix broken cookie path within middleware. For some reason we used the
`/typo3/` path while storing cookies server side. But we used `/` in
JavaScript. That didn't play together and was fixed to always be `/` for
now, but it should be configurable in general. The fix revealed that the
detection of whether to store a cookie was broken, which was fixed
within the corresponding service.

Furthermore the dates how long the cookie should be stored was
different. We now always use 7 days.
2024-02-21 10:16:34 +01:00
d38af239ee
[FEATURE] Add JavaScript functionality (#2) 2022-09-28 11:35:07 +02:00