Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions apps/host-selfhost/web/routeTree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { Route as rootRouteImport } from './routes/__root'
import { Route as ToolsRouteImport } from './routes/tools'
import { Route as SecretsRouteImport } from './routes/secrets'
import { Route as PoliciesRouteImport } from './routes/policies'
import { Route as OauthAppsRouteImport } from './routes/oauth-apps'
import { Route as ApiKeysRouteImport } from './routes/api-keys'
import { Route as AdminRouteImport } from './routes/admin'
import { Route as IndexRouteImport } from './routes/index'
Expand All @@ -38,6 +39,11 @@ const PoliciesRoute = PoliciesRouteImport.update({
path: '/policies',
getParentRoute: () => rootRouteImport,
} as any)
const OauthAppsRoute = OauthAppsRouteImport.update({
id: '/oauth-apps',
path: '/oauth-apps',
getParentRoute: () => rootRouteImport,
} as any)
const ApiKeysRoute = ApiKeysRouteImport.update({
id: '/api-keys',
path: '/api-keys',
Expand Down Expand Up @@ -94,6 +100,7 @@ export interface FileRoutesByFullPath {
'/': typeof IndexRoute
'/admin': typeof AdminRoute
'/api-keys': typeof ApiKeysRoute
'/oauth-apps': typeof OauthAppsRoute
'/policies': typeof PoliciesRoute
'/secrets': typeof SecretsRoute
'/tools': typeof ToolsRoute
Expand All @@ -109,6 +116,7 @@ export interface FileRoutesByTo {
'/': typeof IndexRoute
'/admin': typeof AdminRoute
'/api-keys': typeof ApiKeysRoute
'/oauth-apps': typeof OauthAppsRoute
'/policies': typeof PoliciesRoute
'/secrets': typeof SecretsRoute
'/tools': typeof ToolsRoute
Expand All @@ -125,6 +133,7 @@ export interface FileRoutesById {
'/': typeof IndexRoute
'/admin': typeof AdminRoute
'/api-keys': typeof ApiKeysRoute
'/oauth-apps': typeof OauthAppsRoute
'/policies': typeof PoliciesRoute
'/secrets': typeof SecretsRoute
'/tools': typeof ToolsRoute
Expand All @@ -142,6 +151,7 @@ export interface FileRouteTypes {
| '/'
| '/admin'
| '/api-keys'
| '/oauth-apps'
| '/policies'
| '/secrets'
| '/tools'
Expand All @@ -157,6 +167,7 @@ export interface FileRouteTypes {
| '/'
| '/admin'
| '/api-keys'
| '/oauth-apps'
| '/policies'
| '/secrets'
| '/tools'
Expand All @@ -172,6 +183,7 @@ export interface FileRouteTypes {
| '/'
| '/admin'
| '/api-keys'
| '/oauth-apps'
| '/policies'
| '/secrets'
| '/tools'
Expand All @@ -188,6 +200,7 @@ export interface RootRouteChildren {
IndexRoute: typeof IndexRoute
AdminRoute: typeof AdminRoute
ApiKeysRoute: typeof ApiKeysRoute
OauthAppsRoute: typeof OauthAppsRoute
PoliciesRoute: typeof PoliciesRoute
SecretsRoute: typeof SecretsRoute
ToolsRoute: typeof ToolsRoute
Expand Down Expand Up @@ -223,6 +236,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof PoliciesRouteImport
parentRoute: typeof rootRouteImport
}
'/oauth-apps': {
id: '/oauth-apps'
path: '/oauth-apps'
fullPath: '/oauth-apps'
preLoaderRoute: typeof OauthAppsRouteImport
parentRoute: typeof rootRouteImport
}
'/api-keys': {
id: '/api-keys'
path: '/api-keys'
Expand Down Expand Up @@ -300,6 +320,7 @@ const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
AdminRoute: AdminRoute,
ApiKeysRoute: ApiKeysRoute,
OauthAppsRoute: OauthAppsRoute,
PoliciesRoute: PoliciesRoute,
SecretsRoute: SecretsRoute,
ToolsRoute: ToolsRoute,
Expand Down
6 changes: 6 additions & 0 deletions apps/host-selfhost/web/routes/oauth-apps.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { createFileRoute } from "@tanstack/react-router";
import { OAuthAppsPage } from "@executor-js/react/pages/oauth-apps";

export const Route = createFileRoute("/oauth-apps")({
component: OAuthAppsPage,
});
Loading