When using Marshallers, I could use something like:
JSON.registerObjectMarshaller(Date) {
return it?.format("yyyy-MM-dd'T'HH:mm:ss")
}
and it would make all Date objects render to JSON with that format. Is there an equivalent I can use with JSON Views to display Date objects?