Skip to content

205 Reset Content

Success, and please clear the form you just submitted. Like 204, it returns no body.

Use this when you want to tell the client’s browser to clear the form they just submitted. Like 204, you don’t send a body back.

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'Reset Content' };
}).pipe(HttpCode(205));