summaryrefslogtreecommitdiff
path: root/users/app/designs/user/by_created_at_and_one_month_warning_not_sent.js
blob: 53a95dee667717907e6eb48d6baa060bed2103c5 (plain)
1
2
3
4
5
function (doc) {
  if ((doc['type'] == 'User') && (doc['created_at'] != null) && (doc['one_month_warning_sent'] == null)) {
    emit(doc['created_at'], 1);
  }    
}