mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +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"
|
||||
name: str = SettingsField(title="Name")
|
||||
value: str = SettingsField(title="Url")
|
||||
require_authentication: bool = SettingsField(title="Require authentication")
|
||||
ssl: bool = SettingsField(title="SSL")
|
||||
require_authentication: bool = SettingsField(
|
||||
False,
|
||||
title="Require authentication")
|
||||
ssl: bool = SettingsField(False,
|
||||
title="SSL")
|
||||
|
||||
|
||||
class DeadlineSettings(BaseSettingsModel):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue