Skip to content

Commit

Permalink
Invert integration resource builder (#50746)
Browse files Browse the repository at this point in the history
This was accidentally setting enterprise to base instead of enterprise
resources
  • Loading branch information
avatus authored Jan 3, 2025
1 parent 2fc0ea5 commit 4ea3566
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ function getDefaultResources(
includeEnterpriseResources: boolean
): ResourceSpec[] {
const RESOURCES = includeEnterpriseResources
? BASE_RESOURCES
: [...BASE_RESOURCES, ...SAML_APPLICATIONS];
? [...BASE_RESOURCES, ...SAML_APPLICATIONS]
: BASE_RESOURCES;
return RESOURCES;
}

Expand Down

0 comments on commit 4ea3566

Please sign in to comment.