Skip to content

Commit

Permalink
Merge pull request #129 from ynput/enhancement/remove-intent-from-def…
Browse files Browse the repository at this point in the history
…ault-settings

Chore: Remove usage of 'intent' from default settings
  • Loading branch information
iLLiCiTiT authored Sep 9, 2024
2 parents 053b7dc + 6cf85c6 commit 41ca2d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IntegrateFtrackNote(plugin.FtrackPublishInstancePlugin):
# - Allows only `intent` and `comment` keys
note_template = None
# Backwards compatibility
note_with_intent_template = "{intent}: {comment}"
note_with_intent_template = "{comment}"
# - note label must exist in Ftrack
note_labels = []

Expand Down
2 changes: 1 addition & 1 deletion server/settings/publish_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ class FtrackPublishPlugins(BaseSettingsModel):
},
"IntegrateFtrackNote": {
"enabled": True,
"note_template": "{intent}: {comment}",
"note_template": "{comment}",
"note_labels": []
},
"IntegrateFtrackDescription": {
Expand Down

0 comments on commit 41ca2d4

Please sign in to comment.