Refactor method names/views for Notes
This commit is contained in:
parent
e320bec899
commit
5edb495bcb
5 changed files with 11 additions and 11 deletions
|
@ -24,7 +24,7 @@ class NotesController extends Controller
|
|||
* @param Illuminate\Http\Request request;
|
||||
* @return \Illuminte\View\Factory view
|
||||
*/
|
||||
public function showNotes(Request $request)
|
||||
public function index(Request $request)
|
||||
{
|
||||
$notes = Note::orderBy('id', 'desc')->with('webmentions', 'place', 'media')->paginate(10);
|
||||
foreach ($notes as $note) {
|
||||
|
@ -63,7 +63,7 @@ class NotesController extends Controller
|
|||
|
||||
$homepage = ($request->path() == '/');
|
||||
|
||||
return view('notes', compact('notes', 'homepage'));
|
||||
return view('notes.index', compact('notes', 'homepage'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -72,7 +72,7 @@ class NotesController extends Controller
|
|||
* @param string The id of the note
|
||||
* @return \Illuminate\View\Factory view
|
||||
*/
|
||||
public function singleNote($urlId)
|
||||
public function show($urlId)
|
||||
{
|
||||
$numbers = new Numbers();
|
||||
$authorship = new Authorship();
|
||||
|
@ -161,7 +161,7 @@ class NotesController extends Controller
|
|||
}
|
||||
$note->photoURLs = $photoURLs;
|
||||
|
||||
return view('note', compact('note', 'replies', 'reposts', 'likes'));
|
||||
return view('notes.show', compact('note', 'replies', 'reposts', 'likes'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -170,7 +170,7 @@ class NotesController extends Controller
|
|||
* @param string The decimal id of he note
|
||||
* @return \Illuminate\Routing\RedirectResponse redirect
|
||||
*/
|
||||
public function singleNoteRedirect($decId)
|
||||
public function redirect($decId)
|
||||
{
|
||||
$numbers = new Numbers();
|
||||
$realId = $numbers->numto60($decId);
|
||||
|
@ -186,7 +186,7 @@ class NotesController extends Controller
|
|||
* @param string The tag
|
||||
* @return \Illuminate\View\Factory view
|
||||
*/
|
||||
public function taggedNotes($tag)
|
||||
public function tagged($tag)
|
||||
{
|
||||
$notes = Note::whereHas('tags', function ($query) use ($tag) {
|
||||
$query->where('tag', $tag);
|
||||
|
@ -196,7 +196,7 @@ class NotesController extends Controller
|
|||
$note->human_time = $note->updated_at->diffForHumans();
|
||||
}
|
||||
|
||||
return view('taggednotes', compact('notes', 'tag'));
|
||||
return view('notes.tagged', compact('notes', 'tag'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue