mirror of
https://github.com/bitwarden/server
synced 2025-12-21 02:33:30 +00:00
verify email apis and emails
This commit is contained in:
15
src/Core/Models/Mail/VerifyEmailModel.cs
Normal file
15
src/Core/Models/Mail/VerifyEmailModel.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Bit.Core.Models.Mail
|
||||
{
|
||||
public class VerifyEmailModel : BaseMailModel
|
||||
{
|
||||
public string Url => string.Format("{0}/verify-email?userId={1}&token={2}",
|
||||
WebVaultUrl,
|
||||
UserId,
|
||||
Token);
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
public string Token { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user