diff options
-rw-r--r-- | locales/en.json | 3 | ||||
-rw-r--r-- | public/views/index/body.ejs | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/locales/en.json b/locales/en.json index 8b2574a7..f9c29b53 100644 --- a/locales/en.json +++ b/locales/en.json @@ -110,5 +110,6 @@ "Terms of Use": "Terms of Use", "Do you really want to delete your user account?": "Do you really want to delete your user account?", "This will delete your account, all notes that are owned by you and remove all references to your account from other notes.": "This will delete your account, all notes that are owned by you and remove all references to your account from other notes.", - "Delete user": "Delete user" + "Delete user": "Delete user", + "Export user data": "Export user data" } diff --git a/public/views/index/body.ejs b/public/views/index/body.ejs index f28ab11d..a7c5a0b8 100644 --- a/public/views/index/body.ejs +++ b/public/views/index/body.ejs @@ -27,6 +27,7 @@ </button> <ul class="dropdown-menu" aria-labelledby="profileLabel"> <li><a href="<%- url %>/features"><i class="fa fa-dot-circle-o fa-fw"></i> <%= __('Features') %></a></li> + <li><a href="<%- url %>/me/export"><i class="fa fa-cloud-download fa-fw"></i> <%= __('Export user data') %></a></li> <li><a class="ui-delete-user" data-toggle="modal" data-target=".delete-user-modal"><i class="fa fa-trash fa-fw"></i> <%= __('Delete user') %></a></li> <li><a href="<%- url %>/logout"><i class="fa fa-sign-out fa-fw"></i> <%= __('Sign Out') %></a></li> </ul> |