Add Translators/deepl_accounts
mix phx.gen.live Translators DeeplAccount deepl_accounts\ name:string description:text auth_key:string character_limit:integer\ character_count:integer our_character_count:integer user_id:references:users
This commit is contained in:
21
lib/outlook_web/live/deepl_account_live/show.ex
Normal file
21
lib/outlook_web/live/deepl_account_live/show.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule OutlookWeb.DeeplAccountLive.Show do
|
||||
use OutlookWeb, :live_view
|
||||
|
||||
alias Outlook.Translators
|
||||
|
||||
@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(:deepl_account, Translators.get_deepl_account!(id))}
|
||||
end
|
||||
|
||||
defp page_title(:show), do: "Show Deepl account"
|
||||
defp page_title(:edit), do: "Edit Deepl account"
|
||||
end
|
||||
Reference in New Issue
Block a user