mirror of
				https://github.com/beestat/app.git
				synced 2025-10-31 10:07:01 -04:00 
			
		
		
		
	Removed "json_" prefixes from all columns and converted columns to actual JSON types. Also removed all converged columns and converted contents to regular columns.
		
			
				
	
	
		
			16 lines
		
	
	
		
			274 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			274 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * Cache for these external API calls.
 | |
|  *
 | |
|  * @author Jon Ziebell
 | |
|  */
 | |
| class external_api_cache extends cora\crud {
 | |
| 
 | |
|   public static $user_locked = false;
 | |
| 
 | |
|   public function delete($id) {
 | |
|     throw new Exception('This method is not allowed.');
 | |
|   }
 | |
| }
 |