diff options
| author | horus | 2026-06-27 05:40:45 +0200 |
|---|---|---|
| committer | horus | 2026-06-27 05:40:45 +0200 |
| commit | 7ff83424592cd5a3c58fe2e6d7e67aeef5144caf (patch) | |
| tree | dafafa6f83c80c8bb2ee3c0b58961197a3f2a73c /ssh/routes | |
| parent | b608ced142cd0527906b554e04376292f718f084 (diff) | |
| download | curious-7ff83424592cd5a3c58fe2e6d7e67aeef5144caf.tar.gz | |
merge
Diffstat (limited to 'ssh/routes')
| -rw-r--r-- | ssh/routes/api.php | 19 | ||||
| -rw-r--r-- | ssh/routes/channels.php | 18 | ||||
| -rw-r--r-- | ssh/routes/console.php | 19 | ||||
| -rw-r--r-- | ssh/routes/web.php | 40 |
4 files changed, 0 insertions, 96 deletions
diff --git a/ssh/routes/api.php b/ssh/routes/api.php deleted file mode 100644 index bcb8b18..0000000 --- a/ssh/routes/api.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -use Illuminate\Http\Request; -use Illuminate\Support\Facades\Route; - -/* -|-------------------------------------------------------------------------- -| API Routes -|-------------------------------------------------------------------------- -| -| Here is where you can register API routes for your application. These -| routes are loaded by the RouteServiceProvider within a group which -| is assigned the "api" middleware group. Enjoy building your API! -| -*/ - -Route::middleware('auth:api')->get('/user', function (Request $request) { - return $request->user(); -}); diff --git a/ssh/routes/channels.php b/ssh/routes/channels.php deleted file mode 100644 index 963b0d2..0000000 --- a/ssh/routes/channels.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -use Illuminate\Support\Facades\Broadcast; - -/* -|-------------------------------------------------------------------------- -| Broadcast Channels -|-------------------------------------------------------------------------- -| -| Here you may register all of the event broadcasting channels that your -| application supports. The given channel authorization callbacks are -| used to check if an authenticated user can listen to the channel. -| -*/ - -Broadcast::channel('App.User.{id}', function ($user, $id) { - return (int) $user->id === (int) $id; -}); diff --git a/ssh/routes/console.php b/ssh/routes/console.php deleted file mode 100644 index da55196..0000000 --- a/ssh/routes/console.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -use Illuminate\Foundation\Inspiring; -use Illuminate\Support\Facades\Artisan; - -/* -|-------------------------------------------------------------------------- -| Console Routes -|-------------------------------------------------------------------------- -| -| This file is where you may define all of your Closure based console -| commands. Each Closure is bound to a command instance allowing a -| simple approach to interacting with each command's IO methods. -| -*/ - -Artisan::command('inspire', function () { - $this->comment(Inspiring::quote()); -})->describe('Display an inspiring quote'); diff --git a/ssh/routes/web.php b/ssh/routes/web.php deleted file mode 100644 index a2132c1..0000000 --- a/ssh/routes/web.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -use Illuminate\Support\Facades\Route; - -/* -|-------------------------------------------------------------------------- -| Web Routes -|-------------------------------------------------------------------------- -| -| Here is where you can register web routes for your application. These -| routes are loaded by the RouteServiceProvider within a group which -| contains the "web" middleware group. Now create something great! -| -*/ - -Route::get('/', 'IndexController@index')->name('index'); -Route::get('/topic/{topic}', 'IndexController@topic')->name('topic')->where('topic', '(.+)'); -Route::get('/topics/', 'IndexController@topicindex')->name('topic_index'); -Route::get('/topic/', function() { return redirect()->route('topic_index'); })->name('topic_redir'); -Route::get('/new', 'IndexController@new')->name('new'); -Route::get('/search', 'IndexController@search')->name('search'); -Route::get('/popular/topics', 'IndexController@populartopics')->name('popular_topics'); -Route::get('/popular', 'IndexController@popular')->name('popular'); -Route::get('/random', 'IndexController@random')->name('random'); -Route::get('/article/{id}', 'IndexController@show')->name('show')->where('id', '[0-9]+'); - -Route::get('/feed/new', 'FeedController@new')->name('feed_new'); -Route::get('/feed/mastodon', 'FeedController@mastodon')->name('feed_mastodon'); -Route::get('/feed/mastodon_test', 'FeedController@mastodon_test')->name('feed_mastodon_test'); -Route::get('/feed/popular', 'FeedController@popular')->name('feed_popular'); -Route::get('/feed/search', 'FeedController@search')->name('feed_search'); - -#Auth::routes(); - -Route::get('/cinema', 'CinemaController@cinema')->name('cinema.index'); -Route::get('/cinema/movie/{imdb_id}', 'CinemaController@show')->name('cinema.show'); -Route::get('/cinema/search', 'CinemaController@search')->name('cinema.search'); -Route::get('/genres', 'CinemaController@genres')->name('cinema.genres'); -Route::get('/genres/{genre}', 'CinemaController@genre')->name('cinema.genre')->where('genre', '(.+)'); -Route::get('/about', 'IndexController@about')->name('about'); |
