mirror of
				https://github.com/beestat/app.git
				synced 2025-11-04 02:47:01 -05: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.
		
			
				
	
	
		
			18 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			382 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace cora;
 | 
						|
 | 
						|
/**
 | 
						|
 * Stuff related to API users. For now this is very basic, but this could be
 | 
						|
 * extended later on to allow creation and management of these users. At the
 | 
						|
 * very least, Cora needs to be able to see if the API user is valid based off
 | 
						|
 * of the API key.
 | 
						|
 *
 | 
						|
 * @author Jon Ziebell
 | 
						|
 */
 | 
						|
class api_user extends crud {
 | 
						|
 | 
						|
  public static $user_locked = false;
 | 
						|
 | 
						|
}
 |