mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 04:57:35 -05:00 
			
		
		
		
	* Fix for comparing delete contacts change diffKeys to diff() * Client create * Client Settings * Working on localization * Refactor DataTables * protyping blade vs pure vue * Rebuild test module * Generic notes module * Small Client Notes Module * Tests for TabMenu Trait * implements tab pills in client screen * Integrate Modules
		
			
				
	
	
		
			21 lines
		
	
	
		
			281 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			281 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Modules\Notes\Policies;
 | 
						|
 | 
						|
use Illuminate\Auth\Access\HandlesAuthorization;
 | 
						|
 | 
						|
class NotePolicy
 | 
						|
{
 | 
						|
    use HandlesAuthorization;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new policy instance.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
}
 |