From 91eeec36c2de835aad65a51ed8fc48dce604faae Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 27 Jun 2024 21:22:16 -0600 Subject: [PATCH] Add empty list function --- lib/probe/runs.ex | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/probe/runs.ex b/lib/probe/runs.ex index af35071..4921fdf 100644 --- a/lib/probe/runs.ex +++ b/lib/probe/runs.ex @@ -27,6 +27,9 @@ defmodule Probe.Runs do |> Repo.insert() end + def list_aggregates_by_country do + end + def update_check(check_id, status) do from(check in Check, as: :checks) |> where([checks: checks], checks.id == ^check_id)