Files
phoenix-ausblick/lib/outlook_web/live/article_live/show.ex
Thelonius Kort b7bd9195b6 Add importing html and save it to Article
Additionally defines a wizard logic which is partially unused yet.
2022-12-29 16:43:52 +01:00

23 lines
517 B
Elixir

defmodule OutlookWeb.ArticleLive.Show do
use OutlookWeb, :live_view
alias Outlook.Articles
alias Outlook.InternalTree
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
def handle_params(%{"id" => id}, _, socket) do
{:noreply,
socket
|> assign(:page_title, page_title(socket.assigns.live_action))
|> assign(:article, Articles.get_article!(id))}
end
defp page_title(:show), do: "Show Article"
defp page_title(:edit), do: "Edit Article"
end