Skip to content
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

Applications: update inline docs for only_available in applications addon settings #471

Merged
merged 9 commits into from
May 29, 2024
8 changes: 7 additions & 1 deletion server_addon/applications/server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,13 @@ class ApplicationsAddonSettings(BaseSettingsModel):
scope=["studio"]
)
only_available: bool = SettingsField(
True, title="Show only available applications")
True,
title="Show only available applications",
description="Enable to show only available applications in AYON Launcher"
" for which the executable paths are found on the running machine."
" This applies as an additional filter to the applications defined in a "
" project's anatomy settings to ignore unavailable applications."
MustafaJafar marked this conversation as resolved.
Show resolved Hide resolved
)

@validator("tool_groups")
def validate_unique_name(cls, value):
Expand Down