Files
phoenix-ausblick/lib/outlook_web/live/author_live/show.ex
Thelonius Kort 005a9d9337 Add Authors
mix phx.gen.live Authors Author authors name:string description:text homepage_name:string homepage_url:string
2022-12-26 17:12:46 +01:00

22 lines
481 B
Elixir

defmodule OutlookWeb.AuthorLive.Show do
use OutlookWeb, :live_view
alias Outlook.Authors
@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(:author, Authors.get_author!(id))}
end
defp page_title(:show), do: "Show Author"
defp page_title(:edit), do: "Edit Author"
end