namespace BookStack\Actions;
+use BookStack\Auth\Permissions\JointPermission;
use BookStack\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
+use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphTo;
/**
return $this->morphTo('entity');
}
+ public function jointPermissions(): HasMany
+ {
+ return $this->hasMany(JointPermission::class, 'entity_id', 'entity_id')
+ ->whereColumn('tags.entity_type', '=', 'joint_permissions.entity_type');
+ }
+
/**
* Get a full URL to start a tag name search for this tag name.
*/