import { GetServerSideProps } from 'next' import { AutomatedPageContextT, getAutomatedPageContextFromRequest, } from '@/automated-pipelines/components/AutomatedPageContext' import { MainContextT, getMainContext } from '@/frame/components/context/MainContext' import { EnabledList, EnabledListT } from '@/github-apps/components/EnabledList' type Props = { mainContext: MainContextT currentVersion: string appsItems: EnabledListT automatedPageContext: AutomatedPageContextT categoriesWithoutSubcategories: string[] } export default function UserGitHubAppEndpoints({ mainContext, currentVersion, appsItems, automatedPageContext, categoriesWithoutSubcategories, }: Props) { return ( ) } export const getServerSideProps: GetServerSideProps = async (context) => { const { getAppsServerSideProps } = await import('@/github-apps/lib/index') const { currentVersion, appsItems, categoriesWithoutSubcategories } = await getAppsServerSideProps(context, 'user-to-server-rest', { useDisplayTitle: false }) return { props: { mainContext: await getMainContext(context.req, context.res), currentVersion, appsItems, automatedPageContext: getAutomatedPageContextFromRequest(context.req), categoriesWithoutSubcategories, }, } }