mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-30 08:20:46 +00:00
Add RelationshipSettings trait
This commit is contained in:
parent
f35718bf66
commit
bf8340ff9d
1 changed files with 24 additions and 0 deletions
24
app/Http/Controllers/Settings/RelationshipSettings.php
Normal file
24
app/Http/Controllers/Settings/RelationshipSettings.php
Normal file
|
@ -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 a new issue