[Enhancement] Add download rate limiting to app settings (#646)

* Added rate limit column to settings

* Added limit_rate option to command runner

* Added rate limit to settings form
This commit is contained in:
Kieran
2025-03-11 15:45:56 -07:00
committed by GitHub
parent 0fbf810cb6
commit 4554648ba7
6 changed files with 47 additions and 4 deletions
@@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddRateLimitSpeedToSettings do
use Ecto.Migration
def change do
alter table(:settings) do
add :download_throughput_limit, :string
end
end
end