Files
outline/server/routes/api/comments/__snapshots__/comments.test.ts.snap
Tom Moor 428b3c9553 chore: Ensure comment data is validated before persisting (#6322)
Fix flash on render of comment create
2023-12-28 10:46:50 -08:00

20 lines
405 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`#comments.create should require authentication 1`] = `
{
"error": "authentication_required",
"message": "Authentication required",
"ok": false,
"status": 401,
}
`;
exports[`#comments.list should require authentication 1`] = `
{
"error": "authentication_required",
"message": "Authentication required",
"ok": false,
"status": 401,
}
`;