use of alfio.util.MustacheCustomTagInterceptor in project alf.io by alfio-event.
the class MvcConfiguration method addInterceptors.
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(getLocaleChangeInterceptor());
registry.addInterceptor(getEventLocaleSetterInterceptor());
registry.addInterceptor(getTemplateMessagesInterceptor());
registry.addInterceptor(new MustacheCustomTagInterceptor());
registry.addInterceptor(getCsrfInterceptor());
registry.addInterceptor(getCSPInterceptor());
registry.addInterceptor(getDefaultTemplateObjectsFiller());
}
Aggregations