mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:07:30 -05:00 
			
		
		
		
	* Performance improvements moving from str_replace to strtr * Remove legacy docs * Clean up credit transformer * Working on invoice emails * Clean up for invoice designs * Tests for light and dark theme emails * Working on reminder scheduling * Reminder Job Class * Fixes for github actions * PHP CS * Test for reminders * Test for reminders
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Controllers\Traits;
 | 
						|
 | 
						|
use App\Models\User;
 | 
						|
use App\Utils\Traits\UserSessionAttributes;
 | 
						|
use Illuminate\Support\Facades\Auth;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class VerifiesUserEmail
 | 
						|
 * @package App\Http\Controllers\Traits
 | 
						|
 */
 | 
						|
trait VerifiesUserEmail
 | 
						|
{
 | 
						|
    use UserSessionAttributes;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @param $code
 | 
						|
     * @return \Illuminate\Http\RedirectResponse
 | 
						|
     */
 | 
						|
    public function confirm()
 | 
						|
    {
 | 
						|
        if ($user = User::whereRaw("BINARY `confirmation_code`= ?", request()->route('confirmation_code'))->first()) {
 | 
						|
            $user->email_verified_at = now();
 | 
						|
            $user->confirmation_code = null;
 | 
						|
            $user->save();
 | 
						|
 | 
						|
            return response()->json(['message' => ctrans('texts.security_confirmation')]);
 | 
						|
        }
 | 
						|
 | 
						|
        return response()->json(['message' => ctrans('texts.wrong_confirmation')]);
 | 
						|
    }
 | 
						|
}
 |