Skip to content

Commit 16e07be

Browse files
language fixes
1 parent c1ddf08 commit 16e07be

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

email-templates/account/email-verified/text.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ Hi {{ name }}, your email address has been verified.
44

55
You can now contribute to our great community and get inspired to take action. Have fun!
66

7-
Start exploring: http://localhost:3000/
7+
Start exploring: {{frontURL}}
88

9-
— Human Connection
9+
— Human Connection

server/models/users.model.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ module.exports = function (app) {
4242
resetShortToken: { type: String },
4343
resetExpires: { type: Date },
4444
wasSeeded: { type: Boolean },
45-
wasInvited: { type: Boolean }
45+
wasInvited: { type: Boolean },
46+
language: { type: String, default: 'en' }
4647
});
4748

4849
return mongooseClient.model('users', users);

0 commit comments

Comments
 (0)