Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
event
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fezrul
event
Commits
aae82f65
Commit
aae82f65
authored
Jul 23, 2018
by
Bayu Hendra Winata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove laravel built-in auth controllers
parent
9a06fc04
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
182 deletions
+0
-182
app/Http/Controllers/Auth/ForgotPasswordController.php
+0
-32
app/Http/Controllers/Auth/LoginController.php
+0
-39
app/Http/Controllers/Auth/RegisterController.php
+0
-72
app/Http/Controllers/Auth/ResetPasswordController.php
+0
-39
No files found.
app/Http/Controllers/Auth/ForgotPasswordController.php
deleted
100644 → 0
View file @
9a06fc04
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\SendsPasswordResetEmails
;
class
ForgotPasswordController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset emails and
| includes a trait which assists in sending these notifications from
| your application to your users. Feel free to explore this trait.
|
*/
use
SendsPasswordResetEmails
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
}
app/Http/Controllers/Auth/LoginController.php
deleted
100644 → 0
View file @
9a06fc04
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\AuthenticatesUsers
;
class
LoginController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|--------------------------------------------------------------------------
|
| This controller handles authenticating users for the application and
| redirecting them to your home screen. The controller uses a trait
| to conveniently provide its functionality to your applications.
|
*/
use
AuthenticatesUsers
;
/**
* Where to redirect users after login.
*
* @var string
*/
protected
$redirectTo
=
'/home'
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
)
->
except
(
'logout'
);
}
}
app/Http/Controllers/Auth/RegisterController.php
deleted
100644 → 0
View file @
9a06fc04
<?php
namespace
App\Http\Controllers\Auth
;
use
App\User
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Support\Facades\Hash
;
use
Illuminate\Support\Facades\Validator
;
use
Illuminate\Foundation\Auth\RegistersUsers
;
class
RegisterController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Register Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users as well as their
| validation and creation. By default this controller uses a trait to
| provide this functionality without requiring any additional code.
|
*/
use
RegistersUsers
;
/**
* Where to redirect users after registration.
*
* @var string
*/
protected
$redirectTo
=
'/home'
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
/**
* Get a validator for an incoming registration request.
*
* @param array $data
* @return \Illuminate\Contracts\Validation\Validator
*/
protected
function
validator
(
array
$data
)
{
return
Validator
::
make
(
$data
,
[
'name'
=>
'required|string|max:255'
,
'email'
=>
'required|string|email|max:255|unique:users'
,
'password'
=>
'required|string|min:6|confirmed'
,
]);
}
/**
* Create a new user instance after a valid registration.
*
* @param array $data
* @return \App\User
*/
protected
function
create
(
array
$data
)
{
return
User
::
create
([
'name'
=>
$data
[
'name'
],
'email'
=>
$data
[
'email'
],
'password'
=>
Hash
::
make
(
$data
[
'password'
]),
]);
}
}
app/Http/Controllers/Auth/ResetPasswordController.php
deleted
100644 → 0
View file @
9a06fc04
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\ResetsPasswords
;
class
ResetPasswordController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|--------------------------------------------------------------------------
|
| This controller is responsible for handling password reset requests
| and uses a simple trait to include this behavior. You're free to
| explore this trait and override any methods you wish to tweak.
|
*/
use
ResetsPasswords
;
/**
* Where to redirect users after resetting their password.
*
* @var string
*/
protected
$redirectTo
=
'/home'
;
/**
* Create a new controller instance.
*
* @return void
*/
public
function
__construct
()
{
$this
->
middleware
(
'guest'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment