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

Added info descriptions for addon settings #38

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,12 +444,14 @@ class ApplicationsAddonSettings(BaseSettingsModel):
applications: ApplicationsSettings = SettingsField(
default_factory=ApplicationsSettings,
title="Applications Definitions",
description="(Legacy) - Show / hide apps based on project's anatomy attributes.",
Copy link
Member

@iLLiCiTiT iLLiCiTiT Dec 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not legacy related, project_applications and project_tools are.

scope=["studio"],
section="Definitions"
)
tool_groups: list[ToolGroupModel] = SettingsField(
default_factory=list,
title="Tools Definitions",
description="Configure your tools / plugins, e.g.renderer, hair addon etc.",
scope=["studio"]
)
project_applications: ProjectApplicationsModel = SettingsField(
Expand Down
Loading