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
First, GREAT PLUGIN!
When user clicks logout is there a way to log out of both Moodle and Google?
The moodle logout.php file (I think) hints at this. Would be nice if the plugin form had place for input of a logout URL with the service. Google as an example: https://accounts.google.com/Logout
Code:
logout.php file as this at the bottom.
$authsequence = get_enabled_auth_plugins(); // auths, in sequence
foreach($authsequence as $authname) {
$authplugin = get_auth_plugin($authname);
$authplugin->logoutpage_hook();
The text was updated successfully, but these errors were encountered:
First, GREAT PLUGIN!
When user clicks logout is there a way to log out of both Moodle and Google?
The moodle logout.php file (I think) hints at this. Would be nice if the plugin form had place for input of a logout URL with the service. Google as an example: https://accounts.google.com/Logout
Code:
logout.php file as this at the bottom.
$authsequence = get_enabled_auth_plugins(); // auths, in sequence
foreach($authsequence as $authname) {
$authplugin = get_auth_plugin($authname);
$authplugin->logoutpage_hook();
The text was updated successfully, but these errors were encountered: