File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
apps/dokploy/server/api/routers Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const mariadbRouter = createTRPCRouter({
8787 type : "volume" ,
8888 } ) ;
8989
90- return true ;
90+ return newMariadb ;
9191 } catch ( error ) {
9292 if ( error instanceof TRPCError ) {
9393 throw error ;
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export const mongoRouter = createTRPCRouter({
8787 type : "volume" ,
8888 } ) ;
8989
90- return true ;
90+ return newMongo ;
9191 } catch ( error ) {
9292 if ( error instanceof TRPCError ) {
9393 throw error ;
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ export const mysqlRouter = createTRPCRouter({
8989 type : "volume" ,
9090 } ) ;
9191
92- return true ;
92+ return newMysql ;
9393 } catch ( error ) {
9494 if ( error instanceof TRPCError ) {
9595 throw error ;
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ export const postgresRouter = createTRPCRouter({
9191 type : "volume" ,
9292 } ) ;
9393
94- return true ;
94+ return newPostgres ;
9595 } catch ( error ) {
9696 if ( error instanceof TRPCError ) {
9797 throw error ;
You can’t perform that action at this time.
0 commit comments