Added protection to Nickname and added user get coins endpoint

This commit is contained in:
2025-12-29 15:59:25 +00:00
parent 39f55a12c0
commit 59df3e2d37
3 changed files with 12 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ Route::prefix('v1')->group(function () {
Route::get('/', [ProfileController::class, 'show']);
Route::put('/', [ProfileController::class, 'update']);
Route::delete('/', [ProfileController::class, 'destroy']);
Route::get('/coins', [ProfileController::class, 'getCoins']);
Route::put('/password', [
ProfileController::class,
'updatePassword',