You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns the default TRP3 profile, used when creating new profiles.
TRP3_API.profile.getDefaultProfile()
Returns
PR_DEFAULT_PROFILE: The default profile used by TRP3 when creating new profiles. Unlikely to ever be used outside of this context.
Example
This function doesn't have much use outside of TRP3 itself, below is an example as to how it is used.
-- Creating a new profile using the default profile as a templatelocaldefaultProfile=TRP3_API.profile.getDefaultProfilelocalfunctioncreateProfile(profileName)
returnduplicateProfile(defaultProfile, profileName);
end