Skip to content

Commit 27faa4c

Browse files
committed
Prevented the Interceptor to handle asset requests.
1 parent 6032fc5 commit 27faa4c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

grails-app/controllers/grails/plugin/inertia/InertiaInterceptor.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class InertiaInterceptor implements GrailsConfigurationAware {
2828
private static final String CONTENT_TYPE_JSON = 'application/json;charset=utf-8'
2929
private static final String CONTENT_TYPE_HTML = 'text/html;charset=utf-8'
3030

31-
InertiaInterceptor() { matchAll() }
31+
InertiaInterceptor() { match controller: '*' }
3232

3333
boolean before() {
3434

src/test/groovy/grails/plugin/inertia/InertiaInterceptorSpec.groovy

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class InertiaInterceptorSpec extends Specification implements InterceptorUnitTes
1313
{ it.inertia.manifest.location = 'classpath:location/of/the/manifest.json' } as Closure
1414
}
1515

16-
void 'the inertia interceptor matches all requests'() {
16+
void 'the inertia interceptor matches all controller requests'() {
1717

1818
when: 'a request comes in for any controller action'
1919
withRequest controller: 'any'
@@ -22,6 +22,15 @@ class InertiaInterceptorSpec extends Specification implements InterceptorUnitTes
2222
interceptor.doesMatch()
2323
}
2424

25+
void 'the inertia interceptor does not match requests for assets'() {
26+
27+
when: 'a request comes in for an asset'
28+
withRequest uri: '/static/dist/main.js'
29+
30+
then: 'the interceptor does not match'
31+
!interceptor.doesMatch()
32+
}
33+
2534
void 'inertia #method requests from stale assets returns appropriately'(String action, String method, String location, int status) {
2635

2736
given: 'a controller'

0 commit comments

Comments
 (0)