32 lines
		
	
	
		
			675 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			675 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Permissions\Models;
 | 
						|
 | 
						|
use BookStack\App\Model;
 | 
						|
use BookStack\Entities\Models\Entity;
 | 
						|
use BookStack\Users\Models\Role;
 | 
						|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
 | 
						|
use Illuminate\Database\Eloquent\Relations\MorphOne;
 | 
						|
 | 
						|
class JointPermission extends Model
 | 
						|
{
 | 
						|
    protected $primaryKey = null;
 | 
						|
    public $timestamps = false;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the role that this points to.
 | 
						|
     */
 | 
						|
    public function role(): BelongsTo
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Role::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the entity this points to.
 | 
						|
     */
 | 
						|
    public function entity(): MorphOne
 | 
						|
    {
 | 
						|
        return $this->morphOne(Entity::class, 'entity');
 | 
						|
    }
 | 
						|
}
 |