Update StatusController

This commit is contained in:
Daniel Supernault 2019-06-27 00:44:34 -06:00
parent 28a1495e9e
commit 96a101e560
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -60,6 +60,11 @@ class StatusController extends Controller
return view($template, compact('user', 'status'));
}
public function showEmbed(Request $request, $username, int $id)
{
return;
}
public function showObject(Request $request, $username, int $id)
{
$user = Profile::whereNull('domain')->whereUsername($username)->firstOrFail();