dates vs filter_date
#761
Replies: 1 comment 1 reply
-
|
The date option creates a bucket. The filter_date filters other buckets.
So this would create two buckets. Album_an and a selection of assets from your whole library limited from 2024-01-01 to today.
```yaml
album:
- album_a
date:
- 2024-01-01_to_today
```
While this would filter/limit the asset shown in album_a to 2024-01-01 to today
```yaml
album:
- album_a
filter_date:
- 2024-01-01_to_today
```
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kvalev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
So far I have been using the
datesfilter with only a single value to restrict which assets should be shown. Now I was upgrading to a newer kiosk version and saw that there is also thefilter_dateconfig option and I am a bit lost as to what the difference between the two is. Is it only the bucketing stuff? Meaning if you use only a singledatesthen its identical to using a date filter?Beta Was this translation helpful? Give feedback.
All reactions