Account Settings

Settings on an account

Setting Description / Example

headerLogoUrl

The logo shown at the top left of the Limecraft Flow UI application.

"https://s3-eu-west-1.amazonaws.com/limecraft/client/client-logo.png"

headerText

The text shown next to the logo at the top left in the Limecraft Flow UI application.

"client"

headerBackgroundColor

The background of the upper header of the Limecraft Flow UI application.

"#3e3d40"

edgeDefaultRoute

When Edge is used with this account, it will by default open the screen this route points to.

"auth/edge/productions/<%=productionId%>/importer"

edgeShowLastTransferStartedAtColumn

true

edgeShowLastTransferCompletedAtColumn

true

edgeHideImportVolumes

true

edgeHideImportVolumes

true

edgeHideImportFolder

false

edgeHideImportFile

false

edgeHideImportAAF

true

edgeHideBackupApp

true

edgeHideLibraryApp

false

edgeHideDownloadApp

true

edgeHideAudioSyncApp

true

edgeIngestShowDeleteOriginalFiles

true

edgeIngestShowDeleteOriginalImport

true

productionSettingsTemplates

See the section below on bootstrapping production settings with production templates.

Bootstrap Production Settings via Account Settings

The productionSettingsTemplates contains an array of templates to bootstrap a production. If the array contains more than one template, the user will see a choice when creating a new production.

Create Production Dialog with settings choice

One of the templates should have isDefault: true.

The actual settings applied to the production are set in the settings key.

Note that this is only used during creation of the production. Changing the settings afterwards won’t affect existing productions.

{
  "headerText": " ",    // this is an account setting and is used if production setting is not set
  "headerBackgroundColor": "red", // productions without headerBackgroundColor setting will have a red header
  "productionSettingsTemplates": [
    // when creating a production with this template, the production will have a deeppink header
    {
      "name": "tpl_123",
      "label": "Fiction Production",
      "isDefault": true,
      "settings": {
        "headerBackgroundColor": "deeppink"
      }
    },

    // when creating a production with this template, the production will have a blue header
    {
      "name": "tpl_124",
      "label": "FactualProduction",
      "settings": {
        "headerBackgroundColor": "blue"
      }
    }
  ]
}