22 lines
458 B
Elixir
22 lines
458 B
Elixir
|
defmodule ExmrWeb.ExamLive.Show do
|
||
|
use ExmrWeb, :live_view
|
||
|
|
||
|
alias Exmr.Exams
|
||
|
|
||
|
@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(:exam, Exams.get_exam!(id))}
|
||
|
end
|
||
|
|
||
|
defp page_title(:show), do: "Show Exam"
|
||
|
defp page_title(:edit), do: "Edit Exam"
|
||
|
end
|