--- lib/A3C/Dispatcher.pm 2008/05/25 16:43:36 127 +++ lib/A3C/Dispatcher.pm 2008/06/14 12:31:35 153 @@ -3,6 +3,16 @@ use strict; use warnings; +=head1 NAME + +A3C::Displatcher + +=head1 DESCRIPTION + +Create top-level menu navigation + +=cut + use Jifty::Dispatcher -base; use Data::Dump qw/dump/; @@ -23,6 +33,8 @@ $top->child( _('Sync') => url => '/sync' ); $top->child( _('LDAP') => url => '/ldap' ); + my $strix = $top->child( _('Strix') => url => '/strix' ); + $strix->child( _('Name differences') => url => '/strix/name_diff' ); # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id;