CollectionChangelistTags

CollectionChangelistTags

#Overview

name: CollectionChangelistTags

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 2 C++ source files.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Projects/Lyra/Config/DefaultEditor.ini:71, section: [/Script/SourceControl.SourceControlPreferences]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Developer/CollectionManager/Private/CollectionManager.cpp:2096

Scope (from outer to inner):

file
function     bool FCollectionManager::InternalSaveCollection

Source code excerpt:

		SpecificMatch->ParseIntoArrayLines(SettingsLines, /*bCullEmpty=*/ false);
	}
	SettingsLines.Append(Settings->CollectionChangelistTags);

	for (const FString& OneSettingLine : SettingsLines)
	{
		AdditionalChangelistText.Add(FText::FromString(*OneSettingLine));
	}

#Loc: <Workspace>/Engine/Source/Developer/SourceControl/Public/SourceControlPreferences.h:47

Scope (from outer to inner):

file
class        class USourceControlPreferences : public UDeveloperSettings

Source code excerpt:

	/** List of lines to add to any collection on checkin */
	UPROPERTY(config, EditAnywhere, Category = SourceControl)
	TArray<FString> CollectionChangelistTags;

	/** Map of collection names and additional text to apply to changelist descriptions when checking them in */
	UPROPERTY(config, EditAnywhere, Category = SourceControl, meta=(MultiLine=true))
	TMap<FName, FString> SpecificCollectionChangelistTags;
};