feat: expose MinIO operator console
CI / Typecheck, test & build (push) Successful in 3m4s
CI / Deploy to Cloudflare Workers (push) Successful in 1m33s

This commit is contained in:
2026-09-06 22:57:00 +08:00
parent c03617a6e6
commit e3fcaa4d38
5 changed files with 101 additions and 1 deletions
+21
View File
@@ -16,6 +16,7 @@ import { Route as AuthedIndexRouteImport } from './routes/_authed/index'
import { Route as AuthedSidRouteImport } from './routes/_authed/sid'
import { Route as AuthedRolesRouteImport } from './routes/_authed/roles'
import { Route as AuthedRobotsRouteImport } from './routes/_authed/robots'
import { Route as AuthedMinioConsoleRouteImport } from './routes/_authed/minio-console'
import { Route as AuthedLocalesRouteImport } from './routes/_authed/locales'
import { Route as AuthedEventReportsRouteImport } from './routes/_authed/event-reports'
import { Route as AuthedDimzouTranslationsRouteImport } from './routes/_authed/dimzou-translations'
@@ -75,6 +76,11 @@ const AuthedRobotsRoute = AuthedRobotsRouteImport.update({
path: '/robots',
getParentRoute: () => AuthedRoute,
} as any)
const AuthedMinioConsoleRoute = AuthedMinioConsoleRouteImport.update({
id: '/minio-console',
path: '/minio-console',
getParentRoute: () => AuthedRoute,
} as any)
const AuthedLocalesRoute = AuthedLocalesRouteImport.update({
id: '/locales',
path: '/locales',
@@ -213,6 +219,7 @@ export interface FileRoutesByFullPath {
'/dimzou-translations': typeof AuthedDimzouTranslationsRoute
'/event-reports': typeof AuthedEventReportsRoute
'/locales': typeof AuthedLocalesRoute
'/minio-console': typeof AuthedMinioConsoleRoute
'/robots': typeof AuthedRobotsRoute
'/roles': typeof AuthedRolesRoute
'/sid': typeof AuthedSidRoute
@@ -244,6 +251,7 @@ export interface FileRoutesByTo {
'/dimzou-translations': typeof AuthedDimzouTranslationsRoute
'/event-reports': typeof AuthedEventReportsRoute
'/locales': typeof AuthedLocalesRoute
'/minio-console': typeof AuthedMinioConsoleRoute
'/robots': typeof AuthedRobotsRoute
'/roles': typeof AuthedRolesRoute
'/sid': typeof AuthedSidRoute
@@ -278,6 +286,7 @@ export interface FileRoutesById {
'/_authed/dimzou-translations': typeof AuthedDimzouTranslationsRoute
'/_authed/event-reports': typeof AuthedEventReportsRoute
'/_authed/locales': typeof AuthedLocalesRoute
'/_authed/minio-console': typeof AuthedMinioConsoleRoute
'/_authed/robots': typeof AuthedRobotsRoute
'/_authed/roles': typeof AuthedRolesRoute
'/_authed/sid': typeof AuthedSidRoute
@@ -313,6 +322,7 @@ export interface FileRouteTypes {
| '/dimzou-translations'
| '/event-reports'
| '/locales'
| '/minio-console'
| '/robots'
| '/roles'
| '/sid'
@@ -344,6 +354,7 @@ export interface FileRouteTypes {
| '/dimzou-translations'
| '/event-reports'
| '/locales'
| '/minio-console'
| '/robots'
| '/roles'
| '/sid'
@@ -377,6 +388,7 @@ export interface FileRouteTypes {
| '/_authed/dimzou-translations'
| '/_authed/event-reports'
| '/_authed/locales'
| '/_authed/minio-console'
| '/_authed/robots'
| '/_authed/roles'
| '/_authed/sid'
@@ -457,6 +469,13 @@ declare module '@tanstack/react-router' {
preLoaderRoute: typeof AuthedRobotsRouteImport
parentRoute: typeof AuthedRoute
}
'/_authed/minio-console': {
id: '/_authed/minio-console'
path: '/minio-console'
fullPath: '/minio-console'
preLoaderRoute: typeof AuthedMinioConsoleRouteImport
parentRoute: typeof AuthedRoute
}
'/_authed/locales': {
id: '/_authed/locales'
path: '/locales'
@@ -636,6 +655,7 @@ interface AuthedRouteChildren {
AuthedDimzouTranslationsRoute: typeof AuthedDimzouTranslationsRoute
AuthedEventReportsRoute: typeof AuthedEventReportsRoute
AuthedLocalesRoute: typeof AuthedLocalesRoute
AuthedMinioConsoleRoute: typeof AuthedMinioConsoleRoute
AuthedRobotsRoute: typeof AuthedRobotsRoute
AuthedRolesRoute: typeof AuthedRolesRoute
AuthedSidRoute: typeof AuthedSidRoute
@@ -667,6 +687,7 @@ const AuthedRouteChildren: AuthedRouteChildren = {
AuthedDimzouTranslationsRoute: AuthedDimzouTranslationsRoute,
AuthedEventReportsRoute: AuthedEventReportsRoute,
AuthedLocalesRoute: AuthedLocalesRoute,
AuthedMinioConsoleRoute: AuthedMinioConsoleRoute,
AuthedRobotsRoute: AuthedRobotsRoute,
AuthedRolesRoute: AuthedRolesRoute,
AuthedSidRoute: AuthedSidRoute,