diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-09-17 15:25:27 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-09-17 15:25:27 -0400 |
commit | 0e055eabe1a7d0e077105f6e9cc48057c9540443 (patch) | |
tree | 0fc7f9acfb0609ce5fb629dae9584471802be063 /app/Validator | |
parent | 7399c3c59632712b0e9da778dd542fc681a5e0c3 (diff) |
Add custom role edition
Diffstat (limited to 'app/Validator')
-rw-r--r-- | app/Validator/ProjectRoleValidator.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Validator/ProjectRoleValidator.php b/app/Validator/ProjectRoleValidator.php index a4b9da15..4db630db 100644 --- a/app/Validator/ProjectRoleValidator.php +++ b/app/Validator/ProjectRoleValidator.php @@ -40,7 +40,7 @@ class ProjectRoleValidator extends BaseValidator public function validateModification(array $values) { $rules = array( - new Validators\Required('id', t('The id is required')), + new Validators\Required('role_id', t('The id is required')), ); $v = new Validator($values, array_merge($rules, $this->commonValidationRules())); @@ -64,7 +64,7 @@ class ProjectRoleValidator extends BaseValidator new Validators\MaxLength('role', t('The maximum length is %d characters', 100), 100), new Validators\Required('project_id', t('This field is required')), new Validators\Integer('project_id', t('This value must be an integer')), - new Validators\Integer('id', t('This value must be an integer')), + new Validators\Integer('role_id', t('This value must be an integer')), ); } } |