Added date of birth filter.

This commit is contained in:
DebaucheryLibrarian
2021-03-03 23:54:54 +01:00
parent 96f9c8f01d
commit 721e6494cf
3 changed files with 63 additions and 0 deletions

View File

@@ -269,6 +269,7 @@ function initActorActions(store, router) {
letter,
gender,
age,
dob,
naturalBoobs,
boobSize,
height,
@@ -300,6 +301,8 @@ function initActorActions(store, router) {
]
` : '';
const dobFilter = dob ? `dateOfBirth: { equalTo: "${dob}" }` : '';
const heightFilter = height ? `height: { greaterThanOrEqualTo: ${height[0]}, lessThanOrEqualTo: ${height[1]} }` : '';
const weightFilter = weight ? `weight: { greaterThanOrEqualTo: ${weight[0]}, lessThanOrEqualTo: ${weight[1]} }` : '';
const cupFilter = boobSize ? `cup: { greaterThanOrEqualTo: "${boobSize[0]}", lessThanOrEqualTo: "${boobSize[1]}" }` : '';
@@ -324,6 +327,7 @@ function initActorActions(store, router) {
}
${genderFilter}
${ageFilter}
${dobFilter}
${heightFilter}
${weightFilter}
${cupFilter}