@@ -11,6 +11,7 @@ import Macroable from '@poppinss/macroable'
11
11
import type { Application } from '@adonisjs/application'
12
12
13
13
import { Route } from './route.js'
14
+ import type { HttpContext } from '../http_context/main.js'
14
15
import type { ParsedGlobalMiddleware } from '../types/middleware.js'
15
16
import type { MakeUrlOptions , RouteFn , RouteMatchers } from '../types/route.js'
16
17
@@ -87,27 +88,33 @@ export class BriskRoute extends Macroable {
87
88
params ?: any [ ] | Record < string , any > ,
88
89
options ?: MakeUrlOptions & { status : number }
89
90
) : Route {
90
- return this . setHandler ( async function redirectsToRoute ( ctx ) {
91
+ function redirectsToRoute ( ctx : HttpContext ) {
91
92
const redirector = ctx . response . redirect ( )
92
93
if ( options ?. status ) {
93
94
redirector . status ( options . status )
94
95
}
95
96
96
97
return redirector . toRoute ( identifier , params || ctx . params , options )
97
- } )
98
+ }
99
+ Object . defineProperty ( redirectsToRoute , 'listArgs' , { value : identifier , writable : false } )
100
+
101
+ return this . setHandler ( redirectsToRoute )
98
102
}
99
103
100
104
/**
101
105
* Redirect request to a fixed URL
102
106
*/
103
107
redirectToPath ( url : string , options ?: { status : number } ) : Route {
104
- return this . setHandler ( async function redirectsToPath ( ctx ) {
108
+ function redirectsToPath ( ctx : HttpContext ) {
105
109
const redirector = ctx . response . redirect ( )
106
110
if ( options ?. status ) {
107
111
redirector . status ( options . status )
108
112
}
109
113
110
114
return redirector . toPath ( url )
111
- } )
115
+ }
116
+ Object . defineProperty ( redirectsToPath , 'listArgs' , { value : url , writable : false } )
117
+
118
+ return this . setHandler ( redirectsToPath )
112
119
}
113
120
}
0 commit comments