mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 08:13:16 +00:00
Update Follower model
This commit is contained in:
parent
c42f0fd80a
commit
836030c527
1 changed files with 5 additions and 2 deletions
|
@ -6,6 +6,9 @@ use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
class Follower extends Model
|
class Follower extends Model
|
||||||
{
|
{
|
||||||
|
|
||||||
|
protected $fillable = ['profile_id', 'following_id', 'local_profile'];
|
||||||
|
|
||||||
public function actor()
|
public function actor()
|
||||||
{
|
{
|
||||||
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
return $this->belongsTo(Profile::class, 'profile_id', 'id');
|
||||||
|
@ -21,9 +24,9 @@ class Follower extends Model
|
||||||
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
return $this->belongsTo(Profile::class, 'following_id', 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function permalink()
|
public function permalink($append = null)
|
||||||
{
|
{
|
||||||
$path = $this->actor->permalink("/follow/{$this->id}");
|
$path = $this->actor->permalink("/follow/{$this->id}{$append}");
|
||||||
return url($path);
|
return url($path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue