* [WIP] Working on fetching channel metadata in yt-dlp backend * Finished first draft of methods to do with querying channels * Renamed CommandRunnerMock to have a more descriptive name * Ran the phx generator for the channel model * Renamed Downloader namespace to MediaClient * [WIP] saving before attempting LiveView * LiveView did not work out but here's a working controller how about
14 lines
326 B
Elixir
14 lines
326 B
Elixir
defmodule PinchflatWeb.MediaSources.ChannelHTML do
|
|
use PinchflatWeb, :html
|
|
|
|
embed_templates "channel_html/*"
|
|
|
|
@doc """
|
|
Renders a channel form.
|
|
"""
|
|
attr :changeset, Ecto.Changeset, required: true
|
|
attr :action, :string, required: true
|
|
attr :media_profiles, :list, required: true
|
|
|
|
def channel_form(assigns)
|
|
end
|