Janky initial implementation of auth and profiles

This commit is contained in:
Ryan Pandya
2022-11-05 22:06:04 -07:00
parent eccaca068d
commit 2456c6d14b
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -22,8 +22,6 @@ defmodule Friends.Accounts.User do
def load_profile(nil) do
%{profile: nil}
has_one :profile, Friends.Friend
end
@doc """
-2
View File
@@ -23,8 +23,6 @@ defmodule FriendsWeb.Router do
get "/", PageController, :index
get "/friends", FriendController, :index
live "/friend/:slug", FriendsLive.Show
live "/friend/:slug", FriendLive.Show
live "/friend/:slug/edit", FriendLive.Edit
end