Skip to content

Commit

Permalink
unwanted comment returned to code
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Oct 22, 2023
1 parent 3e8b497 commit b0f80b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/presentation/http/router/note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const NoteRouter: FastifyPluginCallback<NoteRouterOptions> = (fastify, opts, don
/**
* Check if note does not exist
*/
return reply.send({ deletedFlag : deletedFlag});
return reply.send({ deletedFlag : deletedFlag });
});

/**
Expand All @@ -130,12 +130,11 @@ const NoteRouter: FastifyPluginCallback<NoteRouterOptions> = (fastify, opts, don
id: NotePublicId
},
}>('/', {
/**config: {
config: {
policy: [
'authRequired',
],
},
*/
}, async (request, reply) => {
/**
* TODO: Validate request query
Expand Down

0 comments on commit b0f80b1

Please sign in to comment.