19 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			358 B
		
	
	
	
		
			PHP
		
	
	
	
<?php namespace BookStack;
 | 
						|
 | 
						|
 | 
						|
class Restriction extends Model
 | 
						|
{
 | 
						|
 | 
						|
    protected $fillable = ['role_id', 'action'];
 | 
						|
    public $timestamps = false;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get all this restriction's attached entity.
 | 
						|
     * @return \Illuminate\Database\Eloquent\Relations\MorphTo
 | 
						|
     */
 | 
						|
    public function restrictable()
 | 
						|
    {
 | 
						|
        return $this->morphTo();
 | 
						|
    }
 | 
						|
}
 |