improved
2023-01-09
January 9th, 2023
Happy new year! We've added new functions that you can use in rules.
- With
Geofencing
, you can see if a user is located within N miles of a specific location (e.g.,signals.ip.geo.isWithin(latitude,longitude, radius in miles)
) - With
Duration
, you can write rules based on time usingdaysSince(timestamp)
andyearsSince(timestamp)
(e.g., Email has been in more than 3 breaches in the last 180 days -->size(signals.email.breachInfo.breaches.filter(breach, daysSince(breach.date) < 180)) > 3
)