IT Glue: List Users Who Haven't Signed In For More Than 90 Days
submitted
M
Matt Scutt
Returns a list of users who haven't signed in for more than 90 days.To only return Lite users (Or another specific type of user, add the following after the first "[": RoleName ==
Lite
&&Change the 90 to however many days you want to monitorUsers[? LastSignInAt && time_since(LastSignInAt,
days
) > 90
].join(' | Days Since Last Log In: ', [Email, to_string(time_since(LastSignInAt, days
))])