diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-14 11:43:34 -0600 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2022-04-14 11:43:34 -0600 |
commit | cc58a376a94c28532121fca2e1ab1d0e7de11046 (patch) | |
tree | cb31a620c444e18ad8efa535ec946a7bcd792d6f /lib/aggiedit_web/templates/layout/_user_menu.html.heex | |
parent | ddfab312f73a3f3e15ceb6fec7d350500adb53d6 (diff) | |
download | aggiedit-cc58a376a94c28532121fca2e1ab1d0e7de11046.tar.gz aggiedit-cc58a376a94c28532121fca2e1ab1d0e7de11046.zip |
Add pubsub
Diffstat (limited to 'lib/aggiedit_web/templates/layout/_user_menu.html.heex')
-rw-r--r-- | lib/aggiedit_web/templates/layout/_user_menu.html.heex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/aggiedit_web/templates/layout/_user_menu.html.heex b/lib/aggiedit_web/templates/layout/_user_menu.html.heex index 4ab3b78..bbd9f97 100644 --- a/lib/aggiedit_web/templates/layout/_user_menu.html.heex +++ b/lib/aggiedit_web/templates/layout/_user_menu.html.heex @@ -1,6 +1,6 @@ <%= if @current_user do %> <li class="nav-item active"> - <%= link "Settings", to: Routes.user_settings_path(@conn, :edit), class: "nav-link" %> + <%= link "#{@current_user.username}/settings", to: Routes.user_settings_path(@conn, :edit), class: "nav-link" %> </li> <li class="nav-item active"> <%= link "Log out", to: Routes.user_session_path(@conn, :delete), method: :delete, class: "nav-link" %> |