--- lib/A3C/Dispatcher.pm 2008/03/31 22:01:09 50 +++ lib/A3C/Dispatcher.pm 2008/04/09 22:53:31 65 @@ -8,12 +8,14 @@ use Data::Dump qw/dump/; before '*' => run { + Jifty->web->tangent(url => '/ldaplogin') if (! Jifty->web->current_user->id); my $top = Jifty->web->navigation; my $user = Jifty->web->current_user->user_object; # Jifty->log->debug("current_user = ", dump( $user )); $top->child( _('Find People') => url => '/search-users' ); + $top->child( _('Sync Organization') => url => '/sync' ); # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id; };