Samuel Demirdjian
Samuel Demirdjian
Currently we have the following hooks: | Main API | Interface | Method | | --- | --- | --- | | Loading | Interface_Aurora_Hook_Before_Load | `before_load(&$params)` | | Loading...
Let's say we have a model that has lots of properties public function db_retrieve($model, array $row) { /* @var $model Model_Article */ $tbl = Au::db()->table($this); $model->set_id($row[$tbl . '.id']); $model->set_name($row[$tbl ....
To enhance the protected find_mode function, and be consistent of whether to return model or collection. I think it is always good to return a collection, unless of very specific...
If you know you want a model to load via Aurora, you would do: $model = Model::factory('Feed_Item'); Au::load($model, array('email' => '[email protected]')); // load a model from first row returned However,...
Getting a blank screen HTTP Error 500 when the auto-loader does not find Aurora or Collection classes.
Currently the RESTful API should start with `api/` as url prefix. This should be configurable.
I am opening the caching issue [that was raised in Kohana Forum](http://forum.kohanaframework.org/discussion/comment/79874#Comment_79874) to redirect the discussion here, as I don't want to hijack the Kohana forum with Aurora discussions. Aurora...
CORS policy: Citrix ADC should add CORS headers to responses to _all_ requests (not only pre-flight)
**Is your feature request related to a problem? Please describe.** To enable CORS on a HTTP endpoint, a service must respond with `Access-Control-Allow-*` headers to a request to the endpoint,...