Remove unused functions

This commit is contained in:
Claudio Ortolina
2025-09-26 15:21:09 +03:00
parent aca5c80e4d
commit cc84c3a429
5 changed files with 0 additions and 45 deletions
-10
View File
@@ -75,16 +75,6 @@ defmodule MusicLibrary.Collection do
Repo.one!(q)
end
def collected_releases(release_ids) do
q =
from r in fragment("records, json_each(records.release_ids)"),
where: r.value in ^release_ids,
where: fragment("records.purchased_at IS NOT NULL"),
select: %{record_id: fragment("records.id"), release_id: r.value}
Repo.all(q)
end
def count_records_by_artist(opts \\ []) do
limit = Keyword.get(opts, :limit, 30)
-10
View File
@@ -21,16 +21,6 @@ defmodule MusicLibrary.Wishlist do
Repo.aggregate(base_search(), :count)
end
def wishlisted_releases(release_ids) do
q =
from r in fragment("records, json_each(records.release_ids)"),
where: r.value in ^release_ids,
where: fragment("records.purchased_at IS NULL"),
select: %{record_id: fragment("records.id"), release_id: r.value}
Repo.all(q)
end
defp base_search do
from r in SearchIndex,
where: is_nil(r.purchased_at)