mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
AY-745 - provide default values for new Settings field
This commit is contained in:
parent
bef6855cca
commit
ab74098b7b
1 changed files with 5 additions and 2 deletions
|
|
@ -34,8 +34,11 @@ class ServerItemSubmodel(BaseSettingsModel):
|
||||||
_layout = "compact"
|
_layout = "compact"
|
||||||
name: str = SettingsField(title="Name")
|
name: str = SettingsField(title="Name")
|
||||||
value: str = SettingsField(title="Url")
|
value: str = SettingsField(title="Url")
|
||||||
require_authentication: bool = SettingsField(title="Require authentication")
|
require_authentication: bool = SettingsField(
|
||||||
ssl: bool = SettingsField(title="SSL")
|
False,
|
||||||
|
title="Require authentication")
|
||||||
|
ssl: bool = SettingsField(False,
|
||||||
|
title="SSL")
|
||||||
|
|
||||||
|
|
||||||
class DeadlineSettings(BaseSettingsModel):
|
class DeadlineSettings(BaseSettingsModel):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue