mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
Add new method to User model
This commit is contained in:
parent
d391b1a2a6
commit
7e78261081
1 changed files with 5 additions and 0 deletions
|
@ -31,4 +31,9 @@ class User extends Authenticatable
|
||||||
{
|
{
|
||||||
return $this->hasOne(Profile::class);
|
return $this->hasOne(Profile::class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function url()
|
||||||
|
{
|
||||||
|
return url('/' . $this->username);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue