Jake Vanderwerf
3 days ago ba1e1ccf869b818f7a7a897264dfea05563a7796
inc/registrar/config/Integration.php
@@ -38,6 +38,7 @@
      $this->service_name = $service;
   }
   public function getService_name():string
   {
      return $this->service_name;
@@ -49,7 +50,12 @@
    */
   public function setContentType(string $content):self
   {
      $allowed = JVB()->connect($this->service_name)->getAllowedContent();
      $connection = JVB()->connect($this->service_name);
      if (!$connection){
         error_log('[Integration]::setContentType Service is not setup. '.$this->service_name);
         return $this;
      }
      $allowed = $connection->getAllowedContent();
      if (!in_array($content, $allowed)) {
         error_log($this->service_name.' Connection does not support this content: '.$content);
         return $this;