auth api fix

This commit is contained in:
xinatorus 2020-05-17 14:21:11 +02:00
parent fef3c1e57f
commit 778e862b97
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
class AuthApi { class AuthApi extends ApiController {
public function login(){ public function login(){
$token = (new AuthManager)->getToken($this->input->username,$this->input->password); $token = (new AuthManager)->getToken($this->input['username'],$this->input['password']);
if (!$token) { if (!$token) {
throw new Exception("Auth failed", 401); throw new Exception("Auth failed", 401);
} }