Skip to content

Commit a5f8adb

Browse files
committed
Rename to landing
1 parent be5b207 commit a5f8adb

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

apps/components_guide_web/lib/components_guide_web/controllers/page_controller.ex renamed to apps/components_guide_web/lib/components_guide_web/controllers/landing_controller.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
defmodule ComponentsGuideWeb.PageController do
1+
defmodule ComponentsGuideWeb.LandingController do
22
use ComponentsGuideWeb, :controller
33

44
def index(conn, _params) do

apps/components_guide_web/lib/components_guide_web/router.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defmodule ComponentsGuideWeb.Router do
1717
scope "/", ComponentsGuideWeb do
1818
pipe_through :browser
1919

20-
get "/", PageController, :index
20+
get "/", LandingController, :index
2121

2222
get "/swiftui", SwiftUIController, :index
2323
get "/react+typescript", ReactTypescriptController, :index
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
defmodule ComponentsGuideWeb.LandingView do
2+
use ComponentsGuideWeb, :view
3+
end

apps/components_guide_web/lib/components_guide_web/views/page_view.ex

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)