mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-06 06:44:50 +00:00
27 lines
514 B
PHP
27 lines
514 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware\Api;
|
|
|
|
use Auth;
|
|
use Closure;
|
|
|
|
class Admin
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if (Auth::check() == false || Auth::user()->is_admin == false) {
|
|
return abort(403, "You must be an administrator to do that");
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|