Update TimelineController, add network method

This commit is contained in:
Daniel Supernault 2019-03-20 13:59:43 -06:00
parent 89bd8f9653
commit eada999b3b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -22,4 +22,9 @@ class TimelineController extends Controller
{
return view('timeline.local');
}
public function network(Request $request)
{
return view('timeline.network');
}
}