return organizationRepository
      .getByUserId(userId)
      .then((organizations) => organizations.some((organization) => organization.get('id') == organizationId))
      .then((organizationFound) => organizationFound ? Promise.resolve() : Promise.reject())
      .then(reply)