mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-13 21:01:43 +00:00
Merge branch '1093-add-new-filter-types-is-after-today-and-is-before-today' into 'develop'
Resolve "Add new filter types 'is after today' and 'is before today'" Closes #1093 See merge request bramw/baserow!932
This commit is contained in:
commit
2b4c78823e
8 changed files with 346 additions and 100 deletions
web-frontend/modules/database
|
@ -42,6 +42,8 @@ import {
|
|||
EmptyViewFilterType,
|
||||
NotEmptyViewFilterType,
|
||||
DateEqualsTodayViewFilterType,
|
||||
DateBeforeTodayViewFilterType,
|
||||
DateAfterTodayViewFilterType,
|
||||
DateEqualsDaysAgoViewFilterType,
|
||||
DateEqualsMonthsAgoViewFilterType,
|
||||
DateEqualsYearsAgoViewFilterType,
|
||||
|
@ -234,6 +236,14 @@ export default (context) => {
|
|||
'viewFilter',
|
||||
new DateEqualsTodayViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateBeforeTodayViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateAfterTodayViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsDaysAgoViewFilterType(context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue