mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
ef1b98019a
Search service broken into index and runner tools.
30 lines
660 B
PHP
30 lines
660 B
PHP
<?php namespace BookStack\Auth\Permissions;
|
|
|
|
use BookStack\Auth\Role;
|
|
use BookStack\Entities\Models\Entity;
|
|
use BookStack\Model;
|
|
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');
|
|
}
|
|
}
|