mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-08 18:50:06 +00:00
Add is number of months ago and is number of years ago filter
This commit is contained in:
parent
942ff89918
commit
ada13bba78
8 changed files with 666 additions and 42 deletions
web-frontend/modules/database
|
@ -42,6 +42,8 @@ import {
|
|||
NotEmptyViewFilterType,
|
||||
DateEqualsTodayViewFilterType,
|
||||
DateEqualsDaysAgoViewFilterType,
|
||||
DateEqualsMonthsAgoViewFilterType,
|
||||
DateEqualsYearsAgoViewFilterType,
|
||||
DateEqualsCurrentMonthViewFilterType,
|
||||
DateEqualsCurrentYearViewFilterType,
|
||||
DateBeforeViewFilterType,
|
||||
|
@ -231,6 +233,14 @@ export default (context) => {
|
|||
'viewFilter',
|
||||
new DateEqualsDaysAgoViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsMonthsAgoViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsYearsAgoViewFilterType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewFilter',
|
||||
new DateEqualsCurrentMonthViewFilterType(context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue