13 lines
		
	
	
		
			185 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			185 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class PluginsApi extends ApiController{
 | 
						|
 | 
						|
	public function default(){
 | 
						|
		$this->requireAuth();
 | 
						|
		$response = [];
 | 
						|
 | 
						|
		// TODO: process the request
 | 
						|
 | 
						|
		$this->response($response);
 | 
						|
	}
 | 
						|
}
 |