1
0
mirror of https://github.com/beestat/app.git synced 2025-05-24 02:14:03 -04:00
beestat/api/announcement.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

23 lines
495 B
PHP

<?php
/**
* An address is a discrete object that is normalized and verified using a
* third party service. In order to prevent duplication and extra API calls
* (which cost money), they are stored separately instead of simply as columns
* on a different table.
*
* @author Jon Ziebell
*/
class announcement extends cora\crud {
public static $exposed = [
'private' => [],
'public' => [
'read_id'
]
];
public static $user_locked = false;
}