Class: CodeSunset::AlertDelivery

Inherits:
ApplicationRecord show all
Defined in:
app/models/code_sunset/alert_delivery.rb

Class Method Summary collapse

Class Method Details

.recent_for(feature_key:, status:, alert_kind:, since:) ⇒ Object



8
9
10
11
# File 'app/models/code_sunset/alert_delivery.rb', line 8

def recent_for(feature_key:, status:, alert_kind:, since:)
  where(feature_key: feature_key, status: status, alert_kind: alert_kind)
    .where("delivered_at >= ?", since)
end