mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-31 11:49:14 +01:00
* wip: add crud for services and integrations * feat: remove services * feat: move integration definitions to homarr/definitions, add temporary test connection solution without actual request * feat: add integration count badge * feat: add translation for integrations * feat: add notifications and translate them * feat: add notice to integration forms about test connection * chore: fix ci check issues * feat: add confirm modals for integration deletion and secret card cancellation, change ordering for list page, add name property to integrations * refactor: move revalidate path action * chore: fix ci check issues * chore: install missing dependencies * chore: fix ci check issues * chore: address pull request feedback
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { integrationRouter } from "./router/integration";
|
|
import { userRouter } from "./router/user";
|
|
import { createTRPCRouter } from "./trpc";
|
|
|
|
export const appRouter = createTRPCRouter({
|
|
user: userRouter,
|
|
integration: integrationRouter,
|
|
});
|
|
|
|
// export type definition of API
|
|
export type AppRouter = typeof appRouter;
|