2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Auth\Permissions;
|
2018-09-25 13:30:50 +02:00
|
|
|
|
2018-09-25 17:58:03 +02:00
|
|
|
use BookStack\Auth\Role;
|
2020-11-22 01:17:45 +01:00
|
|
|
use BookStack\Entities\Models\Entity;
|
2018-09-25 13:30:50 +02:00
|
|
|
use BookStack\Model;
|
2020-08-04 14:02:31 +02:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
2016-05-01 22:20:50 +02:00
|
|
|
|
|
|
|
class JointPermission extends Model
|
|
|
|
{
|
2020-08-04 14:02:31 +02:00
|
|
|
protected $primaryKey = null;
|
2016-05-01 22:20:50 +02:00
|
|
|
public $timestamps = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the role that this points to.
|
|
|
|
*/
|
2020-08-04 14:02:31 +02:00
|
|
|
public function role(): BelongsTo
|
2016-05-01 22:20:50 +02:00
|
|
|
{
|
|
|
|
return $this->belongsTo(Role::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the entity this points to.
|
|
|
|
*/
|
2020-08-04 14:02:31 +02:00
|
|
|
public function entity(): MorphOne
|
2016-05-01 22:20:50 +02:00
|
|
|
{
|
|
|
|
return $this->morphOne(Entity::class, 'entity');
|
|
|
|
}
|
|
|
|
}
|