bdecentgmbh / moodle-mod_typorepo

GNU General Public License v3.0
0 stars 2 forks source link

Additional request #6

Closed stefanscholz closed 3 years ago

stefanscholz commented 4 years ago

Can you please add the following global configuration options:

It shall be possible to select which data is passed to typo3:

(according to the customer, firstname/lastname is not required) firstname: user->firstname, user->id or empty lastname: user->lastname, user->id or empty username: user->username or user->id (this needs to be unique) email: user->email or a specified email (this is used for notification purposes)

The reason for this request is that I want to enable the admin to prevent any identifying data of the user being transfered by the plugin unless the admin decides to do so.

If the admin wants "full privacy", he would choose: firstname: empty lastname: empty username: user->id email: admin@

If the admin wants "some privacy", he would choose: firstname: user->firstname lastname: empty username: user->id email: admin@

If the admin wants "best user experience in typo3", he would choose (this should be the default): firstname: user->firstname lastname: user->lastname username: user->username email: user->email

This request is not urgent and if you have any concerns, please let me know before you implement that.