Skip to content

workfile_builder

WorkfileBuilderPlugin

Bases: BaseSettingsModel

Simpler workfile template based on Task type

Source code in server/settings/workfile_builder.py
18
19
20
21
22
23
24
25
26
27
28
29
30
class WorkfileBuilderPlugin(BaseSettingsModel):
    """Simpler workfile template based on Task type"""
    _title = "Workfile Builder"
    create_first_version: bool = SettingsField(
        False,
        title="Create first workfile",
        description="Save first workfile with the built template on "
                    "first run if no existing workfile exists."
    )

    custom_templates: list[CustomBuilderTemplate] = SettingsField(
        default_factory=list
    )