Add the possibility to add a description directly from the task show view

This commit is contained in:
Frédéric Guillot
2014-03-04 22:45:58 -05:00
parent 19409360ca
commit 141616b48c
6 changed files with 108 additions and 25 deletions

View File

@@ -192,6 +192,20 @@ class Task extends Base
);
}
public function validateDescriptionCreation(array $values)
{
$v = new Validator($values, array(
new Validators\Required('id', t('The id is required')),
new Validators\Integer('id', t('This value must be an integer')),
new Validators\Required('description', t('The description is required')),
));
return array(
$v->execute(),
$v->getErrors()
);
}
public function validateModification(array $values)
{
$v = new Validator($values, array(