mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	- Aligned and formatted config options. - Provided way to override onelogin lib options if required. - Added endpoints in core bookstack routes. - Provided way to debug details provided by idp and formatted by bookstack. - Started on test work - Handled case of email address already in use.
		
			
				
	
	
		
			25 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace BookStack\Exceptions;
 | |
| 
 | |
| use Exception;
 | |
| 
 | |
| class JsonDebugException extends Exception
 | |
| {
 | |
| 
 | |
|     protected $data;
 | |
| 
 | |
|     /**
 | |
|      * JsonDebugException constructor.
 | |
|      */
 | |
|     public function __construct($data)
 | |
|     {
 | |
|         $this->data = $data;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Covert this exception into a response.
 | |
|      */
 | |
|     public function render()
 | |
|     {
 | |
|         return response()->json($this->data);
 | |
|     }
 | |
| } |