mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 17:27:33 -04:00 
			
		
		
		
	Clean up auth dir
This commit is contained in:
		
							parent
							
								
									820995e262
								
							
						
					
					
						commit
						7e81f53a04
					
				| @ -1,81 +0,0 @@ | ||||
| <?php | ||||
| /** | ||||
|  * Invoice Ninja (https://invoiceninja.com). | ||||
|  * | ||||
|  * @link https://github.com/invoiceninja/invoiceninja source repository | ||||
|  * | ||||
|  * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com) | ||||
|  * | ||||
|  * @license https://www.elastic.co/licensing/elastic-license | ||||
|  */ | ||||
| 
 | ||||
| namespace App\Http\Controllers\Auth; | ||||
| 
 | ||||
| use App\Http\Controllers\Controller; | ||||
| use App\Models\User; | ||||
| use Illuminate\Foundation\Auth\RegistersUsers; | ||||
| use Illuminate\Support\Facades\Hash; | ||||
| use Illuminate\Support\Facades\Validator; | ||||
| 
 | ||||
| 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 = '/dashboard'; | ||||
| 
 | ||||
|     /** | ||||
|      * 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, [ | ||||
|             'first_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([ | ||||
|             'first_name' => $data['first_name'], | ||||
|             'email' => $data['email'], | ||||
|             'password' => Hash::make($data['password']), | ||||
|         ]); | ||||
|     } | ||||
| } | ||||
| @ -28,16 +28,13 @@ class VendorContactLoginController extends Controller | ||||
| 
 | ||||
|     public function catch() | ||||
|     { | ||||
|         $data = [ | ||||
| 
 | ||||
|         ]; | ||||
| 
 | ||||
|         return $this->render('purchase_orders.catch'); | ||||
|     } | ||||
| 
 | ||||
|     public function logout() | ||||
|     { | ||||
|         Auth::guard('vendor')->logout(); | ||||
|          | ||||
|         request()->session()->invalidate(); | ||||
| 
 | ||||
|         return redirect('/vendors'); | ||||
|  | ||||
| @ -1,50 +0,0 @@ | ||||
| <?php | ||||
| /** | ||||
|  * Invoice Ninja (https://invoiceninja.com). | ||||
|  * | ||||
|  * @link https://github.com/invoiceninja/invoiceninja source repository | ||||
|  * | ||||
|  * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com) | ||||
|  * | ||||
|  * @license https://www.elastic.co/licensing/elastic-license | ||||
|  */ | ||||
| 
 | ||||
| namespace App\Http\Controllers\Auth; | ||||
| 
 | ||||
| use Illuminate\Foundation\Auth\VerifiesEmails; | ||||
| use Illuminate\Routing\Controller; | ||||
| 
 | ||||
| class VerificationController extends Controller | ||||
| { | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Email Verification Controller | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | This controller is responsible for handling email verification for any | ||||
|     | user that recently registered with the application. Emails may also | ||||
|     | be resent if the user did not receive the original email message. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     use VerifiesEmails; | ||||
| 
 | ||||
|     /** | ||||
|      * Where to redirect users after verification. | ||||
|      * | ||||
|      * @var string | ||||
|      */ | ||||
|     protected $redirectTo = '/dashboard'; | ||||
| 
 | ||||
|     /** | ||||
|      * Create a new controller instance. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function __construct() | ||||
|     { | ||||
|         $this->middleware('auth'); | ||||
|         $this->middleware('signed')->only('verify'); | ||||
|         $this->middleware('throttle:6,1')->only('verify', 'resend'); | ||||
|     } | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user