diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | app/views/characters/show.html.erb | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b2273e..dee66a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Added +- Players can now update their email, change their password, or delete their account via a "Manage account" link, + temporarily located on their Character page. + ### Fixed - Distill manadross tincture recipe awarded mending salve instead of manadross tincture. - Equip requirements were ignored. diff --git a/app/views/characters/show.html.erb b/app/views/characters/show.html.erb index ee81e76..71d75a5 100644 --- a/app/views/characters/show.html.erb +++ b/app/views/characters/show.html.erb @@ -104,3 +104,7 @@ </tbody> </table> </div> + +<% if @character == current_char %> + <%= link_to "Manage account", edit_user_registration_path, class: "text-sm" %> +<% end %> |