main
FolderReparentingRelocateModel
Bases: BaseSettingsModel
Re-parent folders with Root relocation
Source code in server/settings/main.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|
FolderReparentingTypeGroupingModel
Bases: BaseSettingsModel
Re-parent folders with Type grouping
Source code in server/settings/main.py
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
|
ShotgridCompatibilitySettings
Bases: BaseSettingsModel
Settings to define relationships between ShotGrid and AYON.
Source code in server/settings/main.py
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
ShotgridServiceSettings
Bases: BaseSettingsModel
Specific settings for the ShotGrid Services: Processor, Leecher and Transmitter.
The different services process events from either ShotGrid or AYON, this field allows to control how long to wait between each event is processed.
Source code in server/settings/main.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
|
ShotgridSettings
Bases: BaseSettingsModel
ShotGrid integration settings.
Main setting for the AYON x ShotGrid integration, these need to be filled out in order to for the services to correctly operate.
Source code in server/settings/main.py
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
|
default_shotgrid_enabled_entities()
The entity types in ShotGrid that are enabled by default in AYON.
Source code in server/settings/main.py
26 27 28 29 30 31 32 33 34 35 36 37 |
|
default_shotgrid_entities()
The entity types that exist in ShotGrid.
Source code in server/settings/main.py
11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
default_shotgrid_reparenting_entities()
The entity types in ShotGrid that are enabled by default in AYON.
Source code in server/settings/main.py
40 41 42 43 44 45 46 47 |
|
get_default_folder_attributes()
Get AYON's Folder attributes
Get all the attribs
for Folder entities in a list to be consumed by the default_factory
in the ShotgridCompatibilitySettings.custom_attribs_map
settings.
Source code in server/settings/main.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|