public void notifyResponsibleAssigned()

in server/src/jetbrains/buildServer/vsoRooms/notificator/VSONotificator.java [138:143]


  public void notifyResponsibleAssigned(@Nullable TestNameResponsibilityEntry oldValue, @NotNull TestNameResponsibilityEntry newValue, @NotNull SProject project, @NotNull Set<SUser> users) {
    final Map<String, Object> root = myMessageBuilder.getTestResponsibilityAssignedMap(newValue, oldValue, project, users);
    root.put("responsibleUser", getUserDisplayName(newValue.getResponsibleUser()));
    root.put("reporterUser", getUserDisplayName(newValue.getReporterUser()));
    sendNotification(users, root, TEST_RESPONSIBILITY_ASSIGNED);
  }