mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
27 lines
772 B
TypeScript
27 lines
772 B
TypeScript
import { createFileRoute, linkOptions } from '@tanstack/react-router'
|
|
|
|
import { DigitalOceanAppPlatformAuthorizePage } from './DigitalOceanAppPlatformAuthorizePage'
|
|
|
|
export const Route = createFileRoute(
|
|
'/_authenticate/_inject-org-details/secret-manager/$projectId/_secret-manager-layout/integrations/digital-ocean-app-platform/authorize',
|
|
)({
|
|
component: DigitalOceanAppPlatformAuthorizePage,
|
|
beforeLoad: ({ context, params }) => {
|
|
return {
|
|
breadcrumbs: [
|
|
...context.breadcrumbs,
|
|
{
|
|
label: 'Integrations',
|
|
link: linkOptions({
|
|
to: '/secret-manager/$projectId/integrations',
|
|
params,
|
|
}),
|
|
},
|
|
{
|
|
label: 'DigitalOcean App Platform',
|
|
},
|
|
],
|
|
}
|
|
},
|
|
})
|