--- lib/A3C/Dispatcher.pm 2008/04/10 00:08:37 67 +++ lib/A3C/Dispatcher.pm 2008/05/25 16:43:36 127 @@ -17,8 +17,13 @@ # Jifty->log->debug("current_user = ", dump( $user )); - $top->child( _('Find People') => url => '/search-users' ); - $top->child( _('Sync Organization') => url => '/sync' ); + $top->child( _('People') => url => '/people' ); + my $o = $top->child( _('Organizations') => url => '/organizations' ); + $o->child( _('New') => url => '/organizations/new' ); + + $top->child( _('Sync') => url => '/sync' ); + $top->child( _('LDAP') => url => '/ldap' ); + # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id; };