예제 #1
0
 public function doRestCreate($data)
 {
     $candidate = Candidate::model()->findByPk($data['candidate_id']);
     if (!$candidate) {
         throw new Exception('Candidate was not found');
     }
     $data['election_id'] = $candidate->election_id;
     parent::doRestCreate($data);
 }
예제 #2
0
 public function doRestCreate($data)
 {
     $data['user_id'] = Yii::app()->user->id;
     parent::doRestCreate($data);
 }