Consolidates admin_live/, theme_live/, provider_live/ into admin/ (with theme/ and providers/ subdirs). Renames shop_live/ to shop/ and user_live/ to auth/. Updates all module names, router refs, test files, CSS source paths, and dialyzer ignore. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
16 lines
320 B
Elixir
16 lines
320 B
Elixir
defmodule SimpleshopThemeWeb.Shop.Contact do
|
|
use SimpleshopThemeWeb, :live_view
|
|
|
|
@impl true
|
|
def mount(_params, _session, socket) do
|
|
{:ok, assign(socket, :page_title, "Contact")}
|
|
end
|
|
|
|
@impl true
|
|
def render(assigns) do
|
|
~H"""
|
|
<SimpleshopThemeWeb.PageTemplates.contact {assigns} />
|
|
"""
|
|
end
|
|
end
|