Skip to content

81 typo in settings #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions server/settings/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class AppPlatformPathModel(BaseSettingsModel):
class AppPlatformURIModel(BaseSettingsModel):
"""Application platform URI model."""

_layout = "compact"
_layout = "expanded"
app_name: str = SettingsField(
title="App Name", description="Application name, e.g. maya/2025"
)
Expand All @@ -90,7 +90,7 @@ class AppPlatformURIModel(BaseSettingsModel):
description="windows / linux / darwin",
)
uri: str = SettingsField(
title="Repository Object Uri",
title="Repository Object URI",
description=(
"Path to USD Asset Resolver plugin zip file on the LakeFs server, "
"e.g: `lakefs://ayon-usd/V001/AyonUsdResolverBin/Hou/ayon-usd-resolver_hou19.5_linux_py37.zip`" # noqa
Expand Down Expand Up @@ -232,7 +232,7 @@ class BinaryDistributionSettings(BaseSettingsModel):
],
)
lake_fs_overrides: list[AppPlatformURIModel] = SettingsField(
title="Resolver Application Overwrites",
title="Resolver Application Overrides",
description=(
"Allows to define a specific Resolver Zip for a specific Application"
),
Expand All @@ -247,7 +247,7 @@ class AyonResolverSettings(BaseSettingsModel):

ayon_log_lvl: str = SettingsField(
"WARN",
title="Resolver Log Lvl",
title="Resolver Log Level",
enum_resolver=log_lvl_enum,
description="Set verbosity of the AyonUsdResolver logger",
)
Expand Down Expand Up @@ -280,7 +280,7 @@ class UsdLibConfigSettings(BaseSettingsModel):
_layout = "collapsed"
usd_tf_debug: str = SettingsField(
"",
title="Tf Debug Variable for Debugging Usd",
title="Tf Debug Variable for Debugging USD",
description="",
)

Expand Down
Loading