MDL-42097 auth: Webservice auth uses tokens only not passwords

This commit is contained in:
Ankit Agarwal 2013-12-05 10:47:43 +08:00
parent 0b3bd8cb7f
commit b2ff512c59

View File

@ -90,10 +90,12 @@ class auth_plugin_webservice extends auth_plugin_base {
/**
* Returns true if this authentication plugin is 'internal'.
*
* Webserice auth doesn't use password fields, it uses only tokens.
*
* @return bool
*/
function is_internal() {
return true;
return false;
}
/**