You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
PHP
54 lines
1.5 KiB
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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();
|
|
});
|
|
|
|
/**-
|
|
* Thread routes
|
|
*/
|
|
$thread_prefix = "thread";
|
|
|
|
//Gets
|
|
Route::get('threads', 'ThreadController@index');
|
|
Route::get($thread_prefix . '/{id}', 'ThreadController@show');
|
|
|
|
//Posts
|
|
Route::post($thread_prefix . '/update/{thread}', 'ThreadController@update');
|
|
Route::post($thread_prefix . '/store', 'ThreadController@store');
|
|
Route::post($thread_prefix . '/destroy/{thread}', 'ThreadController@destroy');
|
|
|
|
/**
|
|
* Post routes
|
|
*/
|
|
$post_prefix = "post";
|
|
|
|
//Posts
|
|
Route::post($post_prefix . '/update/{post}', 'PostController@update');
|
|
Route::post($post_prefix . '/store', 'PostController@store');
|
|
Route::post($post_prefix . '/destroy/{post}', 'PostController@destroy');
|
|
|
|
/**
|
|
* Tag routes
|
|
*/
|
|
$tag_prefix = "tag";
|
|
Route::get('tags', 'TagController@index');
|
|
Route::get($tag_prefix . '/{id}', 'TagController@show');
|
|
|
|
//Posts
|
|
Route::post($tag_prefix . '/update/{tag}', 'TagController@update');
|
|
Route::post($tag_prefix . '/store', 'TagController@store');
|
|
Route::post($tag_prefix . '/destroy/{tag}', 'TagController@destroy'); |