You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
daton/lib/src/http/response/DehydratedStateResponseFact...

17 lines
496 B

import ResponseFactory from './ResponseFactory.ts'
import {Rehydratable} from '../../support/Rehydratable.ts'
import {Request} from '../Request.ts'
export default class DehydratedStateResponseFactory extends ResponseFactory {
constructor(
public readonly rehydratable: Rehydratable
) {
super()
}
public async write(request: Request): Promise<Request> {
request.response.body = JSON.stringify(this.rehydratable.dehydrate())
return request
}
}