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
During the QC process users may choose to add new rating categories that they discover. However, with the current setup of inputting a YAML config file into the program this is fixed and not allowed. The following requirements should be met when implementing configurable ratings:
Back-end
Configuration should be encoded in a DB table. This is preferred over using Bottle.config because if we ever want to work with multiple users then we'd like to allow all users to see the updated available ratings
HTTP endpoint should be added to update the configuration table
An export functionality should be provided so that users could save their updated YAML file to re-use for other projects or to share. This can be done via another HTTP endpoint (i.e fetch the current schema)
Front-end
The QC drop-down selector should have an option to add or remove a rating for a given QC Component (button placed beside selector)
This should call the appropriate API endpoint to propagate the requested changes to the database
Finally this should trigger a re-fetch of the primary data
Provide an export config option to save the current configuration into a YAML file.
Note that when removing a rating one should appropriately handle other QC images that have already been rated using category that is to be removed.
The text was updated successfully, but these errors were encountered:
During the QC process users may choose to add new rating categories that they discover. However, with the current setup of inputting a YAML config file into the program this is fixed and not allowed. The following requirements should be met when implementing configurable ratings:
Back-end
Bottle.config
because if we ever want to work with multiple users then we'd like to allow all users to see the updated available ratingsFront-end
Note that when removing a rating one should appropriately handle other QC images that have already been rated using category that is to be removed.
The text was updated successfully, but these errors were encountered: