1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 01:41:34 +02:00
invoiceninja/app/Http/Controllers/Auth/AuthController.php

58 lines
1.5 KiB
PHP
Raw Normal View History

2015-03-23 05:20:33 +01:00
<?php namespace App\Http\Controllers\Auth;
2015-03-16 22:45:25 +01:00
2015-03-31 19:42:37 +02:00
use Auth;
use Event;
use Illuminate\Http\Request;
use App\Events\UserLoggedIn;
2015-03-23 05:20:33 +01:00
use App\Http\Controllers\Controller;
2015-03-16 22:45:25 +01:00
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Auth\Registrar;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller {
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use AuthenticatesAndRegistersUsers;
2015-03-29 14:37:42 +02:00
protected $loginPath = '/login';
protected $redirectTo = '/dashboard';
2015-03-16 22:45:25 +01:00
/**
* Create a new authentication controller instance.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
* @param \Illuminate\Contracts\Auth\Registrar $registrar
* @return void
*/
public function __construct(Guard $auth, Registrar $registrar)
{
$this->auth = $auth;
$this->registrar = $registrar;
$this->middleware('guest', ['except' => 'getLogout']);
}
2015-03-31 19:42:37 +02:00
public function postLoginWrapper(Request $request)
{
$response = self::postLogin($request);
if (Auth::check()) {
Event::fire(new UserLoggedIn());
}
return $response;
}
2015-03-16 22:45:25 +01:00
}