File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
apps/dokploy/server/api/routers Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ export const composeRouter = createTRPCRouter({
245245 } ) ;
246246 }
247247 await cleanQueuesByCompose ( input . composeId ) ;
248+ return { success : true , message : "Queues cleaned successfully" } ;
248249 } ) ,
249250
250251 loadServices : protectedProcedure
@@ -405,6 +406,7 @@ export const composeRouter = createTRPCRouter({
405406 removeOnFail : true ,
406407 } ,
407408 ) ;
409+ return { success : true , message : "Deployment queued" } ;
408410 } ) ,
409411 redeploy : protectedProcedure
410412 . input ( apiRedeployCompose )
@@ -440,6 +442,7 @@ export const composeRouter = createTRPCRouter({
440442 removeOnFail : true ,
441443 } ,
442444 ) ;
445+ return { success : true , message : "Redeployment queued" } ;
443446 } ) ,
444447 stop : protectedProcedure
445448 . input ( apiFindCompose )
You can’t perform that action at this time.
0 commit comments