You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
themightychris opened this issue
Dec 31, 2022
· 0 comments
Labels
A-backendArea: Backend CBL models and request handlersC-choreCategory: Necessary work for core-maintainers that is not a bug or featureE-easyEffort: Straightforward; recommended for a new contributorL-phpLanguage: PHP
The following code block within StudentTasksRequestHandler::applyRecordDelta() will create fresh StudentTaskSkill records each time any changes to the list are saved:
It should instead have logic to re-use existing StudentTaskSkill records from a map of existing ones by skillId. This will reduce unnecessary churn of database rows and IDs
The text was updated successfully, but these errors were encountered:
themightychris
added
A-backend
Area: Backend CBL models and request handlers
E-easy
Effort: Straightforward; recommended for a new contributor
L-php
Language: PHP
C-chore
Category: Necessary work for core-maintainers that is not a bug or feature
labels
Dec 31, 2022
A-backendArea: Backend CBL models and request handlersC-choreCategory: Necessary work for core-maintainers that is not a bug or featureE-easyEffort: Straightforward; recommended for a new contributorL-phpLanguage: PHP
The following code block within
StudentTasksRequestHandler::applyRecordDelta()
will create fresh StudentTaskSkill records each time any changes to the list are saved:It should instead have logic to re-use existing
StudentTaskSkill
records from a map of existing ones byskillId
. This will reduce unnecessary churn of database rows and IDsThe text was updated successfully, but these errors were encountered: