Skip to content

Commit

Permalink
Invert integration resource builder
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 committed Jan 3, 2025
1 parent 2fc0ea5 commit 108e262
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 108e262

Please sign in to comment.