Group name length validation increased, updated contents, readme, changelog

This commit is contained in:
miloszowi
2021-10-26 17:52:51 +02:00
parent cd0712a07b
commit 6150faeee0
19 changed files with 110 additions and 76 deletions

View File

@@ -4,7 +4,7 @@ from exception.invalidArgumentException import InvalidArgumentException
class GroupNameValidator:
MAX_GROUP_NAME_LENGTH: int = 20
MAX_GROUP_NAME_LENGTH: int = 40
@staticmethod
def validate(group: str) -> None: