Skip to content

Commit

Permalink
Add CustomTab to the list of types requiring special treatment when e…
Browse files Browse the repository at this point in the history
…xtracting profile
  • Loading branch information
neowit committed Oct 19, 2019
1 parent 8e08d5c commit 17fb58a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,10 @@ class BulkRetrieve extends RetrieveMetadata with JsonSupport {
}

//some types require special treatment and need other object types included in the package in order to return meaningful result
private val complexTypes = Map("Profile" -> Set("CustomObject"), "PermissionSet" -> Set("CustomObject"))
private val complexTypes = Map(
"Profile" -> Set("CustomObject", "CustomTab"),
"PermissionSet" -> Set("CustomObject", "CustomTab")
)
/**
* retrieve single type and its members
* @param metadataTypeName, e.g. ApexClass
Expand Down

0 comments on commit 17fb58a

Please sign in to comment.