feat: more of the same

This commit is contained in:
2026-04-23 18:26:55 +02:00
parent 52e9c4ba81
commit 8eb0327a9c
7 changed files with 7 additions and 7 deletions

View File

@@ -74,4 +74,4 @@ defmodule BDS.Generation do
:crypto.hash(:sha256, content) :crypto.hash(:sha256, content)
|> Base.encode16(case: :lower) |> Base.encode16(case: :lower)
end end
end end

View File

@@ -20,4 +20,4 @@ defmodule BDS.Generation.GeneratedFileHash do
|> validate_required([:project_id, :relative_path, :content_hash, :updated_at]) |> validate_required([:project_id, :relative_path, :content_hash, :updated_at])
|> unique_constraint(:relative_path, name: :generated_file_hashes_project_path_idx) |> unique_constraint(:relative_path, name: :generated_file_hashes_project_path_idx)
end end
end end

View File

@@ -197,4 +197,4 @@ defmodule BDS.Menu do
true -> nil true -> nil
end end
end end
end end

View File

@@ -291,4 +291,4 @@ defmodule BDS.Tasks do
true -> nil true -> nil
end end
end end
end end

View File

@@ -44,4 +44,4 @@ defmodule BDS.GenerationTest do
assert {:ok, files} = BDS.Generation.list_generated_files(project.id) assert {:ok, files} = BDS.Generation.list_generated_files(project.id)
assert files == [] assert files == []
end end
end end

View File

@@ -87,4 +87,4 @@ defmodule BDS.MenuTest do
} }
] ]
end end
end end

View File

@@ -133,4 +133,4 @@ defmodule BDS.TasksTest do
defp wait_for_task(_task_id, _predicate, 0) do defp wait_for_task(_task_id, _predicate, 0) do
flunk("task did not reach expected state") flunk("task did not reach expected state")
end end
end end