Skip to content

Commit

Permalink
Remove .DS_Store from current directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mastashake08 committed Mar 12, 2023
1 parent 6fc4697 commit 19e4b9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ yarn-error.log
/.idea
/.vscode
*.DS_Store
.DS_Store
6 changes: 4 additions & 2 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;

use App\Models\User;
/*
|--------------------------------------------------------------------------
| API Routes
Expand All @@ -13,7 +13,9 @@
| be assigned to the "api" middleware group. Make something great!
|
*/

Route::get('/test',function() {
return 0;
});
Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
return $request->user();
});
Expand Down
Binary file modified storage/.DS_Store
Binary file not shown.

0 comments on commit 19e4b9a

Please sign in to comment.