better logging

This commit is contained in:
Anthony Stirling
2025-10-31 10:22:57 +00:00
parent ba80ca1f67
commit f82b8a85c0
3 changed files with 14 additions and 2 deletions

View File

@@ -121,7 +121,11 @@ public class InviteLinkController {
.body(
Map.of(
"error",
"Maximum number of users reached for your license"));
"License limit reached ("
+ (currentUserCount + activeInvites)
+ "/"
+ maxUsers
+ " users). Contact your administrator to upgrade your license."));
}
}