Uninstalling SAML2 / Remap User Authentication Method

Uninstalling SAML2 / Remap User Authentication Method

by Daniel Martin -
Number of replies: 1

According to Uninstall directions / possibly critical bug in release 2017021600 · Issue #90 · catalyst/moodle-auth_saml2 · GitHub "Moodle will not let you uninstall it if there is still users mapped to an auth plugin"

On the Manage authentication page /admin/settings.php?section=manageauths it shows one user of SAML2Moodle Authentication Screenshot


How do I look up a users authentication method?

Average of ratings: -
In reply to Daniel Martin

Re: Uninstalling SAML2 / Remap User Authentication Method

by Daniel Martin -
I figured it out. In the table mdl_user there is an auth column which shows the authentication method. I used this query to get the user:
SELECT username, lastname, firstname, email
FROM `mdl_user`
WHERE `auth` = 'saml2'