From a228a5077c0010aec478f40e502f1349bdf50007 Mon Sep 17 00:00:00 2001 From: Kyle Johnson Date: Fri, 27 Feb 2015 11:17:30 -0500 Subject: [PATCH] Change primaryKey and displayField for Config --- web/api/app/Model/Config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/api/app/Model/Config.php b/web/api/app/Model/Config.php index 2ada8258d..5d3ce852c 100644 --- a/web/api/app/Model/Config.php +++ b/web/api/app/Model/Config.php @@ -18,13 +18,13 @@ class Config extends AppModel { * * @var string */ - public $primaryKey = 'Id'; + public $primaryKey = 'Name'; /** * Display field * * @var string */ - public $displayField = 'Name'; + public $displayField = 'Value'; }