Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/presentation/http/router/noteSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,10 @@ const NoteSettingsRouter: FastifyPluginCallback<NoteSettingsRouterOptions> = (fa
return reply.forbidden('You can\'t remove note\'s creator from the team');
}

if (request.userId === request.body.userId) {
return reply.forbidden('You can\'t remove yourself from the team');
}
Comment thread
Reversean marked this conversation as resolved.

const deletedTeamMemberId = await noteSettingsService.removeTeamMemberByUserIdAndNoteId(userId, noteId);

if (deletedTeamMemberId === undefined) {
Expand Down
Loading