We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0dc6bc0 commit e9273ceCopy full SHA for e9273ce
src/server/api/admin_api.py
@@ -409,6 +409,17 @@ def trigger_sla_pull():
409
return jsonify({"rows added" : num_rows})
410
411
412
+@admin_api.route("/api/admin/test_slp", methods=["GET"])
413
+def trigger_slp_pull():
414
+
415
+ import api.API_ingest.shelterluv_api_handler
416
417
+ num_rows = api.API_ingest.shelterluv_api_handler.store_shelterluv_people_all()
418
+ return jsonify({"rows added" : num_rows})
419
420
421
422
423
# def pdfr():
424
# dlist = pull_donations_for_rfm()
425
# print("Returned " + str(len(dlist)) + " rows")
0 commit comments