Javi Martín
ffc14e499a
Upgrade to Rails 6.0
...
All the code in the `bin/` and the `config/` folders has been generated
running `rake app:update`. The only exception is the code in
`config/application.rb` where we've excluded the engines that Rails 6.0
has added, since we don't use them.
There are a few changes in Active Storage which aren't compatible with
the code we were using until now.
Since the method to assign an attachment in ActiveStorage has changed
and is incompatible with the hack we used to allow assigning `nil`
attachments, and since ActiveStorage now supports assigning `nil`
attachments, we're removing the mentioned hack. This makes the
HasAttachment module redundant, so we're removing it.
Another change in ActiveStorage is files are no longer saved before
saving the `ActiveStorage::Attachment` record. This means we need to
manually upload the file when using direct uploads. We also have to
change the width and height validations we used for images; however,
doing so results in very complex code, and we currently have to write
that code for both images and site customization images.
So, for now, we're just uploading the file before checking its
dimensions. Not ideal, though. We might use active_storage_validations
in the future to fix this issue (when they support a proc/lambda, as
mentioned in commit 600f5c35e ).
We also need to update a couple of tests due to a small change in
response headers. Now the content disposition returns something like:
```
attachment; filename="budget_investments.csv"; filename*=UTF-8''budget_investments.csv
```
So we're updating regular expression we use to check the filename.
Finally, Rails 6.0.1 changed the way the host is set in integration
tests [1] and so both `Capybara.app_host` and `Capybara.default_host`
were ignored when generating URLs in the relationable examples. The only
way I've found to make it work is to explicitely assign the host to the
integration session. Rails 6.1 will change this setup again, so maybe
then we can remove this hack.
[1] https://github.com/rails/rails/pull/36283/commits/fe00711e9
2022-08-24 14:33:02 +02:00
..
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-26 13:03:49 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-10-24 21:20:16 +02:00
2019-10-24 21:20:16 +02:00
2019-10-24 21:20:16 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2020-09-08 11:00:19 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-24 19:24:01 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2020-09-08 11:00:19 +02:00
2019-05-28 16:40:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-09-03 11:49:52 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 21:20:17 +02:00
2020-09-08 11:00:19 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:16 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2021-08-09 23:53:21 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 21:20:17 +02:00
2021-08-09 23:53:21 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2021-08-09 23:53:21 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-05-28 16:40:52 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-24 19:24:01 +02:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-04-17 17:40:56 +02:00
2019-10-24 20:35:13 +02:00
2019-04-29 13:08:43 -05:00
2019-04-24 19:24:01 +02:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-04-24 19:24:01 +02:00
2019-04-24 19:24:01 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 20:35:13 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2019-04-29 13:08:43 -05:00
2019-04-29 13:08:43 -05:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 21:20:16 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2020-04-24 15:43:54 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-05-28 16:40:52 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2019-06-27 09:20:25 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2020-04-24 15:43:54 +02:00
2019-10-24 21:20:16 +02:00
2020-04-24 15:43:54 +02:00
2021-08-09 18:54:44 +02:00
2019-04-17 17:40:56 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2020-04-24 15:43:54 +02:00
2019-06-27 09:19:35 +02:00
2019-06-27 09:19:35 +02:00
2019-06-27 09:19:35 +02:00
2019-06-27 09:19:35 +02:00
2019-06-27 09:19:36 +02:00
2019-06-27 09:19:36 +02:00
2020-04-24 15:43:54 +02:00
2019-06-27 09:19:36 +02:00
2019-06-27 09:20:24 +02:00
2019-06-27 09:19:37 +02:00
2019-06-27 09:19:36 +02:00
2019-06-27 09:19:37 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 21:20:17 +02:00
2019-04-17 17:40:56 +02:00
2019-04-17 17:40:56 +02:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2022-08-23 14:30:38 +02:00
2019-05-28 16:40:52 +02:00
2019-05-28 16:40:52 +02:00
2019-10-24 21:20:17 +02:00
2019-10-24 21:20:17 +02:00
2019-08-07 13:53:27 +02:00
2019-06-07 17:36:22 +02:00
2021-08-09 23:53:21 +02:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-11-07 22:01:43 +01:00
2019-10-24 21:20:17 +02:00
2019-08-07 13:53:27 +02:00
2019-05-21 13:50:19 +02:00
2021-09-03 11:49:52 +02:00
2019-04-29 13:08:43 -05:00
2020-08-06 12:38:18 +02:00
2019-06-07 17:36:22 +02:00
2019-10-24 21:20:16 +02:00
2019-08-07 13:53:27 +02:00
2019-05-22 11:50:03 +02:00
2019-06-07 17:36:22 +02:00
2019-06-12 16:23:40 +02:00
2019-10-24 20:35:13 +02:00
2019-06-12 16:23:40 +02:00
2019-05-22 11:50:03 +02:00
2019-08-07 13:53:27 +02:00
2019-08-07 13:53:27 +02:00
2019-08-07 13:53:27 +02:00
2019-07-29 13:07:24 +02:00
2019-06-12 18:03:53 +02:00
2019-10-24 20:35:13 +02:00
2019-06-12 18:03:53 +02:00
2019-06-12 18:03:53 +02:00
2019-06-12 18:03:53 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-10-24 20:35:13 +02:00
2019-07-29 13:07:24 +02:00
2019-09-12 16:49:01 +02:00
2019-06-07 18:55:29 +02:00
2020-04-23 18:49:43 +02:00
2020-04-23 18:49:43 +02:00
2020-04-09 07:11:52 +10:00
2019-10-24 21:20:17 +02:00
2019-10-20 17:36:36 +02:00
2019-10-20 17:36:36 +02:00
2019-10-25 18:05:59 +02:00
2019-10-30 02:26:42 +01:00
2019-10-30 02:26:42 +01:00
2019-10-30 18:48:55 +01:00
2019-10-30 18:48:55 +01:00
2019-11-01 16:49:14 +01:00
2019-11-01 17:12:42 +01:00
2019-11-01 17:12:42 +01:00
2019-11-01 20:08:46 +01:00
2019-11-05 13:02:37 +01:00
2019-11-05 13:02:37 +01:00
2019-11-06 00:04:02 +01:00
2019-11-07 20:36:43 +01:00
2019-11-08 18:57:54 +01:00
2021-02-23 17:05:24 +01:00
2021-06-09 19:16:55 +02:00
2021-03-11 19:37:58 +01:00
2021-06-09 21:51:39 +02:00
2020-07-08 18:34:58 +02:00
2020-09-08 12:12:43 +02:00
2020-09-08 12:13:01 +02:00
2020-09-08 12:13:13 +02:00
2020-09-08 12:13:21 +02:00
2020-09-08 11:02:13 +02:00
2020-12-02 12:13:02 +01:00
2020-12-04 15:15:32 +01:00
2020-12-04 18:27:49 +01:00
2020-12-08 11:30:46 +01:00
2020-12-16 11:43:15 +01:00
2020-12-21 18:04:48 +01:00
2020-12-21 18:04:48 +01:00
2022-01-17 13:55:31 +01:00
2021-01-18 13:17:37 +01:00
2021-01-14 17:37:58 +01:00
2021-01-14 17:38:01 +01:00
2021-01-26 19:10:12 +01:00
2022-02-25 16:22:52 +01:00
2021-08-16 16:31:04 +02:00
2021-08-16 16:31:04 +02:00
2021-08-16 16:31:04 +02:00
2021-08-16 16:31:04 +02:00
2021-09-24 13:39:15 +02:00
2021-09-03 11:49:52 +02:00
2021-10-06 14:13:44 +02:00
2022-08-24 14:33:02 +02:00
2021-11-05 16:40:36 +01:00
2021-11-05 16:40:36 +01:00