Added developer/user dashboard for all the projects.

This fixes issue 60.
This commit is contained in:
Loic d'Anterroches
2008-12-05 20:37:24 +01:00
parent 119aa4505e
commit 05c8d321c1
6 changed files with 127 additions and 5 deletions

View File

@@ -43,6 +43,21 @@ $ctl[] = array('regex' => '#^/preferences/$#',
'model' => 'IDF_Views_User',
'method' => 'myAccount');
$ctl[] = array('regex' => '#^/dashboard/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_User',
'method' => 'dashboard',
'name' => 'idf_dashboard');
$ctl[] = array('regex' => '#^/dashboard/submitted/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_User',
'method' => 'dashboard',
'params' => false,
'name' => 'idf_dashboard_submit');
$ctl[] = array('regex' => '#^/u/(.*)/$#',
'base' => $base,
'priority' => 4,