mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-05 02:41:14 -05:00
Removed print statement
This commit is contained in:
@@ -33,7 +33,6 @@ def get_notification(service_id, notification_id):
|
|||||||
|
|
||||||
|
|
||||||
def get_notifications_for_service(service_id, page=1):
|
def get_notifications_for_service(service_id, page=1):
|
||||||
print(service_id)
|
|
||||||
query = Notification.query.filter_by(service_id=service_id).order_by(asc(Notification.created_at)).paginate(
|
query = Notification.query.filter_by(service_id=service_id).order_by(asc(Notification.created_at)).paginate(
|
||||||
page=page,
|
page=page,
|
||||||
per_page=current_app.config['PAGE_SIZE']
|
per_page=current_app.config['PAGE_SIZE']
|
||||||
|
|||||||
Reference in New Issue
Block a user