--- lib/A3C/Dispatcher.pm 2008/04/10 21:33:37 71 +++ lib/A3C/Dispatcher.pm 2008/05/25 16:43:36 127 @@ -17,10 +17,12 @@ # Jifty->log->debug("current_user = ", dump( $user )); - $top->child( _('People') => url => 'people' ); + $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( _('Sync') => url => '/sync' ); + $top->child( _('LDAP') => url => '/ldap' ); # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id;