--- lib/A3C/Dispatcher.pm 2008/05/25 16:43:36 127 +++ lib/A3C/Dispatcher.pm 2008/06/15 16:11:17 161 @@ -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,9 @@ $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' ); + $strix->child( _('SQL') => url => '/strix/sql' ); # $top->child( 'Prefs' => url => '/prefs' ) if Jifty->web->current_user->id;