mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
Require user to verify email to use file Send (#1262)
This commit is contained in:
parent
0366c0efef
commit
c1ceeace95
@ -316,7 +316,12 @@ namespace Bit.Core.Services
|
|||||||
var user = await _userRepository.GetByIdAsync(send.UserId.Value);
|
var user = await _userRepository.GetByIdAsync(send.UserId.Value);
|
||||||
if (!await _userService.CanAccessPremium(user))
|
if (!await _userService.CanAccessPremium(user))
|
||||||
{
|
{
|
||||||
throw new BadRequestException("You must have premium status to use file sends.");
|
throw new BadRequestException("You must have premium status to use file Sends.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!user.EmailVerified)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("You must confirm your email to use file Sends.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (user.Premium)
|
if (user.Premium)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user