SpecificCollectionChangelistTags

SpecificCollectionChangelistTags

#Overview

name: SpecificCollectionChangelistTags

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:72, 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:2091

Scope (from outer to inner):

file
function     bool FCollectionManager::InternalSaveCollection

Source code excerpt:


	const USourceControlPreferences* Settings = GetDefault<USourceControlPreferences>();
	if (const FString* SpecificMatch = Settings->SpecificCollectionChangelistTags.Find(CollectionRef->GetCollectionName()))
	{
		// Parse input buffer into an array of lines
		SpecificMatch->ParseIntoArrayLines(SettingsLines, /*bCullEmpty=*/ false);
	}
	SettingsLines.Append(Settings->CollectionChangelistTags);

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

Scope (from outer to inner):

file
class        class USourceControlPreferences : public UDeveloperSettings

Source code excerpt:

	/** 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;
};