mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 00:22:37 +01:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?php namespace BookStack;
|
|
|
|
class JointPermission extends Model
|
|
{
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* Get the role that this points to.
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function role()
|
|
{
|
|
return $this->belongsTo(Role::class);
|
|
}
|
|
|
|
/**
|
|
* Get the entity this points to.
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphOne
|
|
*/
|
|
public function entity()
|
|
{
|
|
return $this->morphOne(Entity::class, 'entity');
|
|
}
|
|
}
|