banning a user now removes their roles
banned users can't be deleted completely signing up for banned users is no longer possible
This commit is contained in:
parent
de351e167c
commit
5d05430b89
3 changed files with 31 additions and 2 deletions
|
@ -416,6 +416,12 @@ namespace Lieb.Data
|
|||
return false;
|
||||
}
|
||||
|
||||
if(user.BannedUntil > DateTimeOffset.UtcNow)
|
||||
{
|
||||
errorMessage = $"You are banned until {user.BannedUntil}.";
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue