Updated some controllers and routes to exclude not yet finished stuff.

This commit is contained in:
James Cole
2014-07-02 21:22:13 +02:00
parent 092a79dc75
commit 3e59c2792c
6 changed files with 11 additions and 96 deletions

View File

@@ -2,6 +2,7 @@
class MigrationController extends BaseController
{
/*
public function index()
{
// check if database connection is present.
@@ -19,7 +20,7 @@ class MigrationController extends BaseController
return View::make('migrate.index')->with('error', $error);
}
return Redirect::route('migrate.select-user');
return Redirect::route('migrate.upload');
}
@@ -47,7 +48,6 @@ class MigrationController extends BaseController
return View::make('error')->with('message', 'No such user!');
}
}
public function migrate($userID)
{
// import the data.
@@ -424,4 +424,5 @@ class MigrationController extends BaseController
return View::make('migrate.result')->with('messages', $messages);
}
*/
}