mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:37:34 -05:00 
			
		
		
		
	* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
		
			
				
	
	
		
			34 lines
		
	
	
		
			729 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			729 B
		
	
	
	
		
			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\Policies;
 | 
						|
 | 
						|
use App\Models\Payment;
 | 
						|
use App\Models\User;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class PaymentPolicy
 | 
						|
 * @package App\Policies
 | 
						|
 */
 | 
						|
class PaymentPolicy extends EntityPolicy
 | 
						|
{
 | 
						|
    /**
 | 
						|
     *  Checks if the user has create permissions
 | 
						|
     *
 | 
						|
     * @param  User $user
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function create(User $user) : bool
 | 
						|
    {
 | 
						|
        return $user->isAdmin() || $user->hasPermission('create_payment') || $user->hasPermission('create_all');
 | 
						|
    }
 | 
						|
}
 |