albertovillani / quizaccess_videocapture

0 stars 0 forks source link

Missed external link Privacy description #4

Open volodymyrdovhan opened 1 month ago

volodymyrdovhan commented 1 month ago

Hello,

your plugin is using external API which should be described for the end user. It should provide details on what data is sent from Moodle to the external service API.

For further details, please refer to the documentation:

Privacy API Checklist Moodle Privacy API Documentation

More info about implementation https://moodledev.io/docs/4.5/apis/subsystems/privacy#indicating-that-you-export-data-to-an-external-location

Thank you.

albertovillani commented 4 weeks ago

Hello Volodymyr,

this plugin sends the image taken with the webcam, togheter with the profile picture of the user, to the external API. The external API performs a check and then deletes both images, returning true / false. No data is ever saved during the process.

If we explain that to the user with a link or a label and we keep using the null_provider in the plugin classes, is it ok?

Thank you

volodymyrdovhan commented 4 weeks ago

Hello @albertovillani, yes, this will perfectly match the requirements. As the external service does not save any personal data - then you just need to explain it and use null_provider class.

Best regards

albertovillani commented 4 weeks ago

Thank you!