Skip to content

Commit

Permalink
Remove auth scaffolding to make it opt-in.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 18, 2015
1 parent 5644e8e commit 5e11f87
Show file tree
Hide file tree
Showing 91 changed files with 21 additions and 15,102 deletions.
62 changes: 0 additions & 62 deletions app/Http/Controllers/Auth/AuthController.php

This file was deleted.

37 changes: 0 additions & 37 deletions app/Http/Controllers/Auth/PasswordController.php

This file was deleted.

35 changes: 0 additions & 35 deletions app/Http/Controllers/HomeController.php

This file was deleted.

7 changes: 0 additions & 7 deletions app/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,3 @@
*/

Route::get('/', 'WelcomeController@index');

Route::get('home', 'HomeController@index');

Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
]);
41 changes: 21 additions & 20 deletions app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,26 @@

use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
class AppServiceProvider extends ServiceProvider {

/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}

/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}

/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
}
35 changes: 0 additions & 35 deletions database/migrations/2014_10_12_000000_create_users_table.php

This file was deleted.

This file was deleted.

Loading

0 comments on commit 5e11f87

Please sign in to comment.