Skip to content

Commit

Permalink
fix: disable user endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroverts committed Dec 5, 2022
1 parent 2cf3bdf commit 254302f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
// return new UserResource($user);
// });

Route::get('/users', function () {
return new UsersCollection(User::all());
});
// Route::get('/users', function () {
// return new UsersCollection(User::all());
// });

Route::get('/events/upcoming/{limit?}', function ($limit = 3) {
return new EventsCollection(Event::where('is_online', true)
Expand Down

0 comments on commit 254302f

Please sign in to comment.