Move all basic auth output and processing to base classes

This commit is contained in:
Zach Copley
2009-10-09 16:57:22 -07:00
parent f746993c2b
commit 743c844084
24 changed files with 38 additions and 164 deletions

View File

@@ -48,6 +48,22 @@ require_once INSTALLDIR.'/lib/apiauth.php';
class ApiBareAuthAction extends ApiAuthAction
{
/**
* Take arguments for running
*
* @param array $args $_REQUEST args
*
* @return boolean success flag
*
*/
function prepare($args)
{
parent::prepare($args);
return true;
}
/**
* Does this API resource require authentication?
*