Dev#59718 integration branche oauth
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
Filter activity
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU AFFERO GENERAL PUBLIC LICENSE for more details. 16 * 17 * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE 18 * along with BOKEH; if not, write to the Free Software 19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20 */ 21 22 23 class Api_UserController extends Zend_Controller_Action { 24 public function loansAction() { 25 if (!$this->_request->isSecure()) 26 return $this->_error('Use HTTPS, not ' . $this->_request->getScheme()); 27 28 if (!$authorization = $this->_request->getHeader('authorization')) 29 return $this->_error('Authorization not provided'); mentioned in commit e400cbc3