1
0
mirror of https://github.com/bitwarden/server synced 2025-12-18 17:23:28 +00:00

vault with hash

This commit is contained in:
Kyle Spearrin
2017-08-16 23:44:14 -04:00
parent d2c5fb462c
commit 297b0253e4
5 changed files with 19 additions and 18 deletions

View File

@@ -29,7 +29,7 @@ namespace Bit.Core.Services
var model = new Dictionary<string, string>
{
["url"] = string.Format("{0}/verify-email?userId={1}&token={2}",
_globalSettings.BaseServiceUri.Vault, userId, WebUtility.UrlEncode(token))
_globalSettings.BaseServiceUri.VaultWithHash, userId, WebUtility.UrlEncode(token))
};
var message = await CreateMessageAsync("Verify Your Email", email, "VerifyEmail", model);
@@ -42,7 +42,7 @@ namespace Bit.Core.Services
var model = new Dictionary<string, string>
{
["url"] = string.Format("{0}/verify-recover-delete?userId={1}&token={2}&email={3}",
_globalSettings.BaseServiceUri.Vault,
_globalSettings.BaseServiceUri.VaultWithHash,
userId,
WebUtility.UrlEncode(token),
WebUtility.UrlEncode(email)),
@@ -96,7 +96,7 @@ namespace Bit.Core.Services
var model = new Dictionary<string, string>
{
["hint"] = WebUtility.HtmlEncode(hint),
["vaultUrl"] = _globalSettings.BaseServiceUri.Vault
["vaultUrl"] = _globalSettings.BaseServiceUri.VaultWithHash
};
var message = await CreateMessageAsync("Your Master Password Hint", email, "MasterPasswordHint", model);
@@ -146,7 +146,7 @@ namespace Bit.Core.Services
["organizationName"] = WebUtility.HtmlEncode(organizationName),
["url"] = string.Format("{0}/accept-organization?organizationId={1}&organizationUserId={2}" +
"&email={3}&organizationName={4}&token={5}",
_globalSettings.BaseServiceUri.Vault,
_globalSettings.BaseServiceUri.VaultWithHash,
orgUser.OrganizationId,
orgUser.Id,
WebUtility.UrlEncode(orgUser.Email),
@@ -163,7 +163,7 @@ namespace Bit.Core.Services
{
var model = new Dictionary<string, string>
{
["vaultUrl"] = _globalSettings.BaseServiceUri.Vault
["vaultUrl"] = _globalSettings.BaseServiceUri.VaultWithHash
};
var message = await CreateMessageAsync("Welcome", user.Email, "Welcome", model);