Some fixes related to developing my Micropub client
This commit is contained in:
parent
8eaca85fe0
commit
363254d13c
6 changed files with 61 additions and 13 deletions
|
|
@ -137,6 +137,16 @@ Route::middleware(MyAuthMiddleware::class)->prefix('admin')->group(function () {
|
|||
Route::delete('/{syndicationTarget}', [SyndicationTargetsController::class, 'destroy']);
|
||||
});
|
||||
|
||||
// Clients
|
||||
Route::prefix('clients')->group(function () {
|
||||
Route::get('/', [ClientsController::class, 'index']);
|
||||
Route::get('/create', [ClientsController::class, 'create']);
|
||||
Route::post('/', [ClientsController::class, 'store']);
|
||||
Route::get('/{clientId}/edit', [ClientsController::class, 'edit']);
|
||||
Route::put('/{clientId}', [ClientsController::class, 'update']);
|
||||
Route::delete('/{clientId}', [ClientsController::class, 'destroy']);
|
||||
});
|
||||
|
||||
// Bio
|
||||
Route::prefix('bio')->group(function () {
|
||||
Route::get('/', [BioController::class, 'show'])->name('admin.bio.show');
|
||||
|
|
|
|||
Loading…
Reference in a new issue