Implement user settings

This commit is contained in:
Eike Foken
2011-09-15 18:28:45 +02:00
parent 59739561b4
commit 1496c44505
5 changed files with 72 additions and 3 deletions

View File

@@ -72,6 +72,16 @@ $config['auth/settings'] = array(
'label' => _('New password'),
'rules' => 'min_length[6]|matches[new_password_confirm]',
),
array(
'field' => 'job_check_interval',
'label' => _('Job checking interval'),
'rules' => 'greater_than[4]',
),
array(
'field' => 'projects_sort_recently',
'label' => _('Sort projects by last access'),
'rules' => 'integer',
),
);
/**