12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class ApiBareAuthAction extends ApiAuthAction
- {
-
- function requiresAuth()
- {
-
-
- if (common_config('site', 'private')) {
- return true;
- }
-
- if (!$this->arg('id') && !$this->arg('user_id')
- && mb_strlen($this->arg('screen_name'))===0) {
- return true;
- }
- return false;
- }
- }
|