Skip to content

Commit

Permalink
[IM] - delete virtual interface view page
Browse files Browse the repository at this point in the history
  • Loading branch information
yannrobin committed Jun 29, 2018
1 parent 381608b commit e46c0e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion routes/web-auth-superuser.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,11 @@
Route::group( [ 'namespace' => 'Interfaces', 'prefix' => 'interfaces' ], function() {
Route::group( [ 'prefix' => 'virtual' ], function() {
Route::get( 'list', 'VirtualInterfaceController@list' )->name( 'interfaces/virtual/list' );
Route::get( 'view/{id}', 'VirtualInterfaceController@add' )->name( 'virtual-interface@view' );
Route::get( 'edit/{id}', 'VirtualInterfaceController@add' )->name( 'interfaces/virtual/edit' );
Route::get( 'add/', 'VirtualInterfaceController@add' )->name( 'interfaces/virtual/add' );
Route::get( 'add/custid/{custid}', 'VirtualInterfaceController@addCustId' )->name( 'interfaces/virtual/add/custid' );
Route::get( 'view/{id}', 'VirtualInterfaceController@add' )->name( 'virtual-interface@view' );

Route::get( 'wizard-add', 'VirtualInterfaceController@wizard' )->name( 'interfaces/virtual/wizard' );
Route::get( 'wizard-add/custid/{custid}', 'VirtualInterfaceController@addWizardCustId' )->name( 'interfaces/virtual/add-wizard/custid' );
Route::post( 'store', 'VirtualInterfaceController@store' )->name( 'interfaces/virtual/store' );
Expand Down
3 changes: 1 addition & 2 deletions tests/Browser/VirtualInterfaceControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ public function testAddWizard()


}



/**
* Test the Virtual interface add/edit/delete functions
*
Expand Down

0 comments on commit e46c0e5

Please sign in to comment.