Compare commits

..

1 commit

Author SHA1 Message Date
Pierre de Lacroix
c95d877e68
add fundraising API 2026-01-22 19:36:18 +01:00

View file

@ -0,0 +1,14 @@
defmodule CampApi.Grist.Fundraising do
@moduledoc false
alias CampApi.Grist
@gauge_doc "wWacvVWE9QtQ"
@gauge_table "Dons"
def get() do
{:ok, %{body: %{"records" => records}}} = Grist.get_records(@gauge_doc, @gauge_table)
records
end
end