sidebar with many options!!

This commit is contained in:
Oliver Gorwits
2017-12-21 23:54:44 +00:00
parent 4203cbb225
commit 1def41da67
10 changed files with 1491 additions and 61 deletions

View File

@@ -50,11 +50,9 @@ __PACKAGE__->add_columns(
);
__PACKAGE__->has_many('left_vlans', 'App::Netdisco::DB::Result::DevicePortVlan',
{ 'foreign.ip' => 'self.left_ip', 'foreign.port' => 'self.left_port' },
{ join_type => 'INNER' } );
{ 'foreign.ip' => 'self.left_ip', 'foreign.port' => 'self.left_port' });
__PACKAGE__->has_many('right_vlans', 'App::Netdisco::DB::Result::DevicePortVlan',
{ 'foreign.ip' => 'self.right_ip', 'foreign.port' => 'self.right_port' },
{ join_type => 'INNER' } );
{ 'foreign.ip' => 'self.right_ip', 'foreign.port' => 'self.right_port' });
1;