public async Task <ProjectInvitePreviewModel> Handle(ProjectInviteByTokenRequest request, CancellationToken cancellationToken)
        {
            var dto = await fProjectInviteRepository.GetPreviewByTokenAsync(request.Token, cancellationToken);

            if (dto is null)
            {
                throw new NotFoundCodeException($"Project Invite with Token '{request.Token}' was not found.");
            }

            return(fMapper.Map <ProjectInvitePreviewDto, ProjectInvitePreviewModel>(dto));
        }