Skip to content

dirmap

DirmapSettings

Bases: BaseSettingsModel

Nuke directory map source paths to destination paths.

Source code in server/settings/dirmap.py
16
17
18
19
20
21
22
23
24
class DirmapSettings(BaseSettingsModel):
    """Nuke directory map source paths to destination paths."""
    _isGroup: bool = True

    enabled: bool = SettingsField(title="enabled")
    paths: DirmapPathsSubmodel = SettingsField(
        default_factory=DirmapPathsSubmodel,
        title="Dirmap Paths"
    )