Skip to content

Commit

Permalink
feat: disable pipelines (#11513)
Browse files Browse the repository at this point in the history
* chore: disable pipelines during iaas deployment

* chore: linting
  • Loading branch information
plittlewood-rpt authored Feb 4, 2025
1 parent 4a43443 commit 72ccf4e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/developer-portal/src/components/apps/page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ export const AppsPage: FC = () => {
isAppConsents,
} = getCurrentPage(pathname)

const hasPipelines =
currentDeveloper?.id &&
process.env.pipelineWhitelist.includes(currentDeveloper.id) &&
appDetail?.authFlow !== 'clientCredentials'
// const hasPipelines =
// currentDeveloper?.id &&
// process.env.pipelineWhitelist.includes(currentDeveloper.id) &&
// appDetail?.authFlow !== 'clientCredentials'

const hasPipelines = false

const shouldRenderConsents = checkShouldRenderConsents(appDetail, appLatestRevision, appHasInstallations)

Expand Down

0 comments on commit 72ccf4e

Please # to comment.