* Removed collection_type user input instead inferring from yt-dlp response * Updated docs * Added delete buttons for source; Refactored the way deletion methods work * Update source to always run an initial index * Added deletion to the last models * Improved clarity around deletion operation * Improved task fetching and deletion methods * More tests
27 lines
601 B
Elixir
27 lines
601 B
Elixir
defmodule PinchflatWeb.Sources.SourceHTML do
|
|
use PinchflatWeb, :html
|
|
|
|
embed_templates "source_html/*"
|
|
|
|
@doc """
|
|
Renders a source form.
|
|
"""
|
|
attr :changeset, Ecto.Changeset, required: true
|
|
attr :action, :string, required: true
|
|
attr :media_profiles, :list, required: true
|
|
|
|
def source_form(assigns)
|
|
|
|
def friendly_index_frequencies do
|
|
[
|
|
{"Never", -1},
|
|
{"1 Hour", 60},
|
|
{"3 Hours", 3 * 60},
|
|
{"6 Hours", 6 * 60},
|
|
{"12 Hours", 12 * 60},
|
|
{"Daily (recommended)", 24 * 60},
|
|
{"Weekly", 7 * 24 * 60},
|
|
{"Monthly", 30 * 24 * 60}
|
|
]
|
|
end
|
|
end
|