planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

commit 2bdea8f08849cd8897fd79db4c208e372c2c4f68
parent 175895266796ab19ac0e5dd8a4df5607552255b8
Author: St John Karp <stjohn@fuzzjunket.com>
Date:   Wed, 10 Oct 2018 02:01:20 -0700

Close off unused routes

Commented out a few default routes that came with Laravel.

Diffstat:
Mroutes/channels.php | 4++--
Mroutes/console.php | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/routes/channels.php b/routes/channels.php @@ -11,6 +11,6 @@ | */ -Broadcast::channel('App.User.{id}', function ($user, $id) { +/*Broadcast::channel('App.User.{id}', function ($user, $id) { return (int) $user->id === (int) $id; -}); +});*/ diff --git a/routes/console.php b/routes/console.php @@ -13,6 +13,6 @@ use Illuminate\Foundation\Inspiring; | */ -Artisan::command('inspire', function () { +/*Artisan::command('inspire', function () { $this->comment(Inspiring::quote()); -})->describe('Display an inspiring quote'); +})->describe('Display an inspiring quote');*/