mirror of
https://github.com/GSA/notifications-api.git
synced 2026-01-30 06:21:50 -05:00
Fix for simulated notifications.
When a post is made for a simulated number the id is empty in the notificaiton object that we return. This fixes that.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import uuid
|
||||
from datetime import datetime
|
||||
|
||||
from flask import current_app
|
||||
@@ -53,7 +54,8 @@ def persist_notification(
|
||||
created_by_id=None
|
||||
):
|
||||
notification_created_at = created_at or datetime.utcnow()
|
||||
|
||||
if not notification_id and simulated:
|
||||
notification_id = uuid.uuid4()
|
||||
notification = Notification(
|
||||
id=notification_id,
|
||||
template_id=template_id,
|
||||
|
||||
Reference in New Issue
Block a user