mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 19:15:03 +03:00
17 lines
288 B
Elixir
17 lines
288 B
Elixir
|
defmodule PlausibleWeb.BillingView do
|
||
|
use PlausibleWeb, :view
|
||
|
|
||
|
def reccommended_plan(usage) do
|
||
|
cond do
|
||
|
usage < 9000 ->
|
||
|
"10k / mo"
|
||
|
usage < 90_000 ->
|
||
|
"100k / mo"
|
||
|
usage < 900_000 ->
|
||
|
"1m / mo"
|
||
|
true ->
|
||
|
"custom"
|
||
|
end
|
||
|
end
|
||
|
end
|