code review feedback

This commit is contained in:
Kenneth Kehl
2025-02-10 11:05:41 -08:00
9 changed files with 33 additions and 6 deletions

View File

@@ -128,7 +128,6 @@ def get_all_notifications_for_service_job(service_id, job_id):
@job_blueprint.route("/<job_id>/recent_notifications", methods=["GET"])
def get_recent_notifications_for_service_job(service_id, job_id):
data = notifications_filter_schema.load(request.args)
print(f"DATA COMING IN AT REST LEVEL IS {data}")
page = data["page"] if "page" in data else 1
page_size = (
data["page_size"]