mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
Update ProfileService, add softFail param
This commit is contained in:
parent
f48daab37e
commit
6bc20a37ed
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ namespace App\Services;
|
||||||
|
|
||||||
class ProfileService
|
class ProfileService
|
||||||
{
|
{
|
||||||
public static function get($id)
|
public static function get($id, $softFail = false)
|
||||||
{
|
{
|
||||||
return AccountService::get($id);
|
return AccountService::get($id, $softFail);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function del($id)
|
public static function del($id)
|
||||||
|
|
Loading…
Reference in a new issue