Fixed issue 5, add a way for user to manage their account.

Also added for each user a small public profile.
This commit is contained in:
Loic d'Anterroches
2008-08-12 22:17:49 +02:00
parent 0918d1d542
commit 5275a1a9d6
10 changed files with 333 additions and 16 deletions

View File

@@ -37,6 +37,18 @@ $ctl[] = array('regex' => '#^/login/$#',
'method' => 'login',
'name' => 'login_view');
$ctl[] = array('regex' => '#^/preferences/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_User',
'method' => 'myAccount');
$ctl[] = array('regex' => '#^/u/(.*)/$#',
'base' => $base,
'priority' => 4,
'model' => 'IDF_Views_User',
'method' => 'view');
$ctl[] = array('regex' => '#^/register/$#',
'base' => $base,
'priority' => 4,