bot-refactoring #29

Merged
defnotken merged 16 commits from bot-refactoring into master 2025-11-11 17:48:58 +00:00
Showing only changes of commit 47b2a7a9b9 - Show all commits

View File

@@ -125,7 +125,7 @@ public class UserController : Controller
var user = await dbContext.UserProfileData.FirstOrDefaultAsync(f => f.UserUID == request.UID);
if (user != null)
{
user.ProfileDisabled = true;
user.ProfileDisabled = false;
}
await dbContext.SaveChangesAsync();