Remove phony fk info from case api
authorColeman Watts <coleman@civicrm.org>
Fri, 14 Oct 2016 15:30:16 +0000 (11:30 -0400)
committerColeman Watts <coleman@civicrm.org>
Fri, 14 Oct 2016 15:30:16 +0000 (11:30 -0400)
api/v3/Case.php

index 729fc6ee7943c66cfe406920f9318748c8b9d1de..ba30a4a06731de57005e56573afac19bb8cff738 100644 (file)
@@ -140,13 +140,11 @@ function _civicrm_api3_case_get_spec(&$params) {
     'title' => 'Case Client',
     'description' => 'Contact id of one or more clients to retrieve cases for',
     'type' => CRM_Utils_Type::T_INT,
-    'FKApiName' => 'Contact',
   );
   $params['activity_id'] = array(
     'title' => 'Case Activity',
     'description' => 'Id of an activity in the case',
     'type' => CRM_Utils_Type::T_INT,
-    'FKApiName' => 'Activity',
   );
 }
 
@@ -163,7 +161,6 @@ function _civicrm_api3_case_create_spec(&$params) {
     'description' => 'Contact id of case client(s)',
     'api.required' => 1,
     'type' => CRM_Utils_Type::T_INT,
-    'FKApiName' => 'Contact',
   );
   $params['status_id']['api.default'] = 1;
   $params['status_id']['api.aliases'] = array('case_status');