1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

New: Not in Last/Next for date custom filters

Closes #3889
This commit is contained in:
Mark McDowall
2020-08-02 12:57:07 -07:00
parent 18708f30d9
commit 9a3669d801
4 changed files with 27 additions and 4 deletions
@@ -24,7 +24,9 @@ export const possibleFilterTypes = {
{ key: filterTypes.LESS_THAN, value: 'is before' },
{ key: filterTypes.GREATER_THAN, value: 'is after' },
{ key: filterTypes.IN_LAST, value: 'in the last' },
{ key: filterTypes.IN_NEXT, value: 'in the next' }
{ key: filterTypes.NOT_IN_LAST, value: 'not in the last' },
{ key: filterTypes.IN_NEXT, value: 'in the next' },
{ key: filterTypes.NOT_IN_NEXT, value: 'not in the next' }
],
[EXACT]: [
+7 -1
View File
@@ -3,7 +3,9 @@ export const EQUAL = 'equal';
export const GREATER_THAN = 'greaterThan';
export const GREATER_THAN_OR_EQUAL = 'greaterThanOrEqual';
export const IN_LAST = 'inLast';
export const NOT_IN_LAST = 'notInLast';
export const IN_NEXT = 'inNext';
export const NOT_IN_NEXT = 'notInNext';
export const LESS_THAN = 'lessThan';
export const LESS_THAN_OR_EQUAL = 'lessThanOrEqual';
export const NOT_CONTAINS = 'notContains';
@@ -17,5 +19,9 @@ export const all = [
LESS_THAN,
LESS_THAN_OR_EQUAL,
NOT_CONTAINS,
NOT_EQUAL
NOT_EQUAL,
IN_LAST,
NOT_IN_LAST,
IN_NEXT,
NOT_IN_NEXT
];