mirror of https://github.com/pixelfed/pixelfed
Add RelationshipSettings trait
parent
f35718bf66
commit
bf8340ff9d
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Controllers\Settings;
|
||||||
|
|
||||||
|
use App\AccountLog;
|
||||||
|
use App\EmailVerification;
|
||||||
|
use App\Instance;
|
||||||
|
use App\Media;
|
||||||
|
use App\Profile;
|
||||||
|
use App\User;
|
||||||
|
use App\UserFilter;
|
||||||
|
use App\Util\Lexer\PrettyNumber;
|
||||||
|
use Auth, Cache, DB;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
|
||||||
|
trait RelationshipSettings
|
||||||
|
{
|
||||||
|
|
||||||
|
public function relationshipsHome()
|
||||||
|
{
|
||||||
|
return view('settings.relationships.home');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue