mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Move attribute down (less important)
This commit is contained in:
parent
2047e38aae
commit
b5b661e982
1 changed files with 10 additions and 10 deletions
|
|
@ -342,14 +342,6 @@ class CustomStagingDirProfileModel(BaseSettingsModel):
|
||||||
|
|
||||||
|
|
||||||
class PublishToolModel(BaseSettingsModel):
|
class PublishToolModel(BaseSettingsModel):
|
||||||
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"
|
|
||||||
)
|
|
||||||
)
|
|
||||||
template_name_profiles: list[PublishTemplateNameProfile] = SettingsField(
|
template_name_profiles: list[PublishTemplateNameProfile] = SettingsField(
|
||||||
default_factory=list,
|
default_factory=list,
|
||||||
title="Template name profiles"
|
title="Template name profiles"
|
||||||
|
|
@ -366,6 +358,14 @@ class PublishToolModel(BaseSettingsModel):
|
||||||
title="Custom Staging Dir Profiles"
|
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):
|
class GlobalToolsModel(BaseSettingsModel):
|
||||||
|
|
@ -578,7 +578,6 @@ DEFAULT_TOOLS_VALUES = {
|
||||||
"product_type_filter_profiles": []
|
"product_type_filter_profiles": []
|
||||||
},
|
},
|
||||||
"publish": {
|
"publish": {
|
||||||
"comment_minimum_required_chars": 0,
|
|
||||||
"template_name_profiles": [
|
"template_name_profiles": [
|
||||||
{
|
{
|
||||||
"product_types": [],
|
"product_types": [],
|
||||||
|
|
@ -680,6 +679,7 @@ DEFAULT_TOOLS_VALUES = {
|
||||||
"task_names": [],
|
"task_names": [],
|
||||||
"template_name": "simpleUnrealTextureHero"
|
"template_name": "simpleUnrealTextureHero"
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"comment_minimum_required_chars": 0,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue