1
0
Fork 0

Merge pull request #1055 from pixelfed/frontend-ui-refactor

Update TimelineController, add network method
This commit is contained in:
daniel 2019-03-20 17:51:36 -06:00 committed by GitHub
commit 2a2ddc0fb9
No account linked to committer's email address
1 changed files with 5 additions and 0 deletions

View File

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