Browse Source

remove unused routes

pull/11/head
KodeStar 7 years ago
parent
commit
474a6f513b
  1. 3
      routes/api.php
  2. 4
      routes/channels.php
  3. 4
      routes/console.php

3
routes/api.php

@ -13,6 +13,3 @@ use Illuminate\Http\Request;
|
*/
Route::middleware('auth:api')->get('/user', function (Request $request) {
return $request->user();
});

4
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;
});
});*/

4
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');*/

Loading…
Cancel
Save