Merge branch 'develop' into enhancement/web_action_action_to_create_folder_structure

This commit is contained in:
Mustafa Zaky Jafar 2025-06-23 21:38:06 +03:00 committed by GitHub
commit e565ee4e58
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
82 changed files with 9420 additions and 1168 deletions

View file

@ -358,6 +358,14 @@ class PublishToolModel(BaseSettingsModel):
title="Custom Staging Dir Profiles"
)
)
comment_minimum_required_chars: int = SettingsField(
0,
title="Publish comment minimum required characters",
description=(
"Minimum number of characters required in the comment field "
"before the publisher UI is allowed to continue publishing"
)
)
class GlobalToolsModel(BaseSettingsModel):
@ -671,6 +679,7 @@ DEFAULT_TOOLS_VALUES = {
"task_names": [],
"template_name": "simpleUnrealTextureHero"
}
]
],
"comment_minimum_required_chars": 0,
}
}