mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d9fdecd902
- Adds option filtering and alternative text for page watch options. - Adds "Watched & Ignored Items" list to user notification preferences page to show existing watched items.
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace BookStack\Activity\Models;
|
|
|
|
use BookStack\Activity\WatchLevels;
|
|
use BookStack\Permissions\Models\JointPermission;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property int $watchable_id
|
|
* @property string $watchable_type
|
|
* @property int $level
|
|
* @property Carbon $created_at
|
|
* @property Carbon $updated_at
|
|
*/
|
|
class Watch extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
public function watchable(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
|
|
public function jointPermissions(): HasMany
|
|
{
|
|
return $this->hasMany(JointPermission::class, 'entity_id', 'watchable_id')
|
|
->whereColumn('watches.watchable_type', '=', 'joint_permissions.entity_type');
|
|
}
|
|
|
|
public function getLevelName(): string
|
|
{
|
|
return WatchLevels::levelValueToName($this->level);
|
|
}
|
|
|
|
public function ignoring(): bool
|
|
{
|
|
return $this->level === WatchLevels::IGNORE;
|
|
}
|
|
}
|