1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00
beestat/api/cora/api_user.php
Jon Ziebell eaee95736d Fixed #157 - Re-evaluate converged columns
Removed "json_" prefixes from all columns and converted columns to actual JSON types. Also removed all converged columns and converted contents to regular columns.
2019-10-28 21:18:43 -04:00

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;
}