rabser / moodle-quiz_exportattemptscsv

A Quiz report for Moodle to export the attempts history as a CSV file
GNU General Public License v3.0
0 stars 2 forks source link

missing privacy api #7

Closed danmarsden closed 8 months ago

danmarsden commented 8 months ago

Moodle uses a privacy API for GDPR compliance to allow plugins to specify how they deal with user data. Your plugin doesn't appear to store any user data so you should be able to implement the simple null provider class.

Sites that use continuous integration processes will not be able to use your plugin because Moodle runs unit tests which check to see if all extra plugins include the privacy class.

More information on the privacy class is here: https://docs.moodle.org/dev/Privacy_API

note this is not a blocker for plugins db approval.

rabser commented 8 months ago

Thanks for all of your suggestions and your patience: null privacy provider added.