25 lines
564 B
PHP
25 lines
564 B
PHP
<?php
|
|
class IssueAction extends AppModel {
|
|
|
|
var $name = 'IssueAction';
|
|
var $validate = array(
|
|
'description' => array('notempty'),
|
|
);
|
|
|
|
//The Associations below have been created with all possible keys, those that are not needed can be removed
|
|
var $belongsTo = array(
|
|
'User' => array(
|
|
'className' => 'User',
|
|
'foreignKey' => 'user_id',
|
|
'conditions' => '',
|
|
'fields' => '',
|
|
'order' => ''
|
|
),
|
|
|
|
'Issue' => array(
|
|
'className' => 'Issue',
|
|
'foreignKey' => 'issue_id'
|
|
)
|
|
);
|
|
}
|
|
?>
|