José Francisco Calvo
José Francisco Calvo
Right now we have in our API handlers functions that load an entity using an id like the following: ```python # We load field's dataset association because it's used by...
# Description Add `status` as a persisted database column for `records` table.
# Description This PR include the following changes: * Added `count_submitted_responses` as a property of `Record` database model. * This property requires record responses to be pre-loaded. * This value...
# Description This PR include changes to add a new `status` column to `records` table with the following details: * Possible values for this `status` column are `pending` and `completed`....
# Description This PR include changes to explore the possibility of using a new column named `count_submitted_responses` to `records` table. This new column will be refreshed every time a response...
# Description This PR include changes to explore the possibility of refreshing the new records `status` column inside our Python context functions. The following changes has been included in this...
# Description This PR add changes to support update dataset distribution settings. Allowing for example to update `min_submitted` attribute when `overlap` distribution strategy is in use. Closes #5010 **Type of...
# Description This PR is the first one related with distribution task feature, adding the following changes: * Added `distribution` JSON column to `datasets` table: * This column is non-nullable...
# Description This PR include the following changes: * Added `count_submitted_responses` as a `column_property` of `Record` database model. * This value is get from the database using a subquery. *...
# Description This PR includes a SQLAlchemy event listener for `Response` ORM class that refresh the `status` column for its associated record. It is only a exploratory PR to know...