aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar thursday <xthursdayx@mailbox.org>2021-11-23 15:26:21 -0500
committerLibravatar GitHub <noreply@github.com>2021-11-23 15:26:21 -0500
commit130f0c4a2280a46b044b50725d527a4dd5bdcd21 (patch)
treeceb2069b9adb99c50ec34c7631dee2d0b34fb131
parentUpdate docker-compose.yml (diff)
downloadferdium-server-130f0c4a2280a46b044b50725d527a4dd5bdcd21.tar.gz
ferdium-server-130f0c4a2280a46b044b50725d527a4dd5bdcd21.tar.zst
ferdium-server-130f0c4a2280a46b044b50725d527a4dd5bdcd21.zip
Fixed grammar
Updated password reset email message.
-rw-r--r--start/events.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/start/events.js b/start/events.js
index d0fb749..b734797 100644
--- a/start/events.js
+++ b/start/events.js
@@ -5,8 +5,8 @@ const Env = use('Env');
5Event.on('forgot::password', async ({ user, token }) => { 5Event.on('forgot::password', async ({ user, token }) => {
6 const body = ` 6 const body = `
7Hello ${user.username}, 7Hello ${user.username},
8we just received a request to reset your password of your Ferdi account. 8we received a request to reset your Ferdi account password.
9Use the link below to reset your password. If you havn't requested this, please ignore this message. 9Use the link below to reset your password. If you didn't requested that your password be reset, please ignore this message.
10 10
11${Env.get('EXTERNAL_DOMAIN')}/user/reset?token=${encodeURIComponent(token)} 11${Env.get('EXTERNAL_DOMAIN')}/user/reset?token=${encodeURIComponent(token)}
12 12