* add kickstarter and monthly users badge (#5589)

Co-authored-by: daniel <danielsupernault@gmail.com>

* DM

---------

Co-authored-by: Simon Laux <Simon-Laux@users.noreply.github.com>
This commit is contained in:
daniel 2025-01-25 08:45:42 -07:00 committed by GitHub
parent e1f694b21a
commit fa4474bc38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -3006,6 +3006,8 @@ class ApiV1Controller extends Controller
'scope' => 'nullable|in:inbox,sent,requests',
]);
return [];
$limit = $request->input('limit', 20);
$scope = $request->input('scope', 'inbox');
$user = $request->user();

View file

@ -30,6 +30,7 @@ class DirectMessageController extends Controller
{
public function __construct()
{
abort(404);
$this->middleware('auth');
}