mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-29 04:31:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			747 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			747 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Crater\Http\Controllers;
 | |
| 
 | |
| use Crater\Space\PermissionsChecker;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| 
 | |
| class PermissionsController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * @var PermissionsChecker
 | |
|      */
 | |
|     protected $permissions;
 | |
| 
 | |
|     /**
 | |
|      * @param PermissionsChecker $checker
 | |
|      */
 | |
|     public function __construct(PermissionsChecker $checker)
 | |
|     {
 | |
|         $this->permissions = $checker;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Display the permissions check page.
 | |
|      *
 | |
|      * @return JsonResponse
 | |
|      */
 | |
|     public function permissions()
 | |
|     {
 | |
|         $permissions = $this->permissions->check(
 | |
|             config('installer.permissions')
 | |
|         );
 | |
| 
 | |
|         return response()->json([
 | |
|             'permissions' => $permissions
 | |
|         ]);
 | |
|     }
 | |
| }
 |