Update Follower model, add permalink method

pull/503/head
Daniel Supernault 7 years ago
parent 84d1e3b731
commit 2876ec30d4
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -21,6 +21,12 @@ class Follower extends Model
return $this->belongsTo(Profile::class, 'following_id', 'id');
}
public function permalink()
{
$path = $this->actor->permalink("/follow/{$this->id}");
return url($path);
}
public function toText()
{
$actorName = $this->actor->username;

Loading…
Cancel
Save