Added the base administration of the users.

Still need to not show the non activated accounts by default.
This commit is contained in:
Loic d'Anterroches
2009-01-02 11:20:10 +01:00
parent 2bfa4478e1
commit 3aaf24d3bb
10 changed files with 415 additions and 0 deletions

View File

@@ -417,6 +417,18 @@ $ctl[] = array('regex' => '#^/admin/projects/create/$#',
'model' => 'IDF_Views_Admin',
'method' => 'projectCreate');
$ctl[] = array('regex' => '#^/admin/users/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_Admin',
'method' => 'users');
$ctl[] = array('regex' => '#^/admin/users/(\d+)/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_Admin',
'method' => 'userUpdate');
// ---------- UTILITY VIEWS -------------------------------
$ctl[] = array('regex' => '#^/register/$#',