mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
fix: add proper error message
This commit is contained in:
parent
997ef0d072
commit
adb0991dd9
@ -142,7 +142,11 @@ export class WorkspaceInvitationService {
|
||||
}));
|
||||
|
||||
// When there is nobody to invite
|
||||
if (invitesToInsert.length < 1) return;
|
||||
if (invitesToInsert.length < 1) {
|
||||
throw new BadRequestException(
|
||||
'No members to invite',
|
||||
);
|
||||
}
|
||||
|
||||
invites = await trx
|
||||
.insertInto('workspaceInvitations')
|
||||
@ -153,6 +157,9 @@ export class WorkspaceInvitationService {
|
||||
});
|
||||
} catch (err) {
|
||||
this.logger.error(`createInvitation - ${err}`);
|
||||
if (err instanceof BadRequestException) {
|
||||
throw new BadRequestException('There are no members available to invite. Please exclude yourself and those already invited.');
|
||||
}
|
||||
throw new BadRequestException(
|
||||
'An error occurred while processing the invitations.',
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user