Update SiteController, return 404 for users attempting to view their own Follow Intent

pull/1871/head
Daniel Supernault 2019-12-04 20:30:04 -07:00
rodzic 19cb81cf26
commit 8e9b544f50
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -116,6 +116,7 @@ class SiteController extends Controller
]);
$profile = Profile::whereUsername($request->input('user'))->firstOrFail();
$user = $request->user();
abort_if($profile->id == $user->profile_id, 404);
$following = $user != null ? FollowerService::follows($user->profile_id, $profile->id) : false;
return view('site.intents.follow', compact('profile', 'user', 'following'));
}