mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-04 10:21:14 -05:00
get all inbound sms should default to 7 days, not 6
to be consistent with other checks.
This commit is contained in:
@@ -14,7 +14,7 @@ def dao_create_inbound_sms(inbound_sms):
|
||||
db.session.add(inbound_sms)
|
||||
|
||||
|
||||
def dao_get_inbound_sms_for_service(service_id, limit=None, user_number=None, limit_days=6):
|
||||
def dao_get_inbound_sms_for_service(service_id, limit=None, user_number=None, limit_days=7):
|
||||
q = InboundSms.query.filter(
|
||||
InboundSms.service_id == service_id
|
||||
).order_by(
|
||||
|
||||
Reference in New Issue
Block a user