Add TRANSFER_TOKEN_SALT

This commit is contained in:
2023-03-18 10:02:58 +04:00
parent 4188bda3db
commit 650edff3c0
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ APP_KEYS=
API_TOKEN_SALT=
ADMIN_JWT_SECRET=
JWT_SECRET=
TRANSFER_TOKEN_SALT=
#SMTP ENV
+5
View File
@@ -14,4 +14,9 @@ module.exports = ({ env }) => ({
replyTo: env('SMTP_REPLY_TO'),
emailTemplate: forgotPasswordTemplate,
},
transfer: {
token: {
salt: env('TRANSFER_TOKEN_SALT')
}
}
});