CleanUp
This commit is contained in:
parent
dcc7592c4f
commit
b0650e7fbe
@ -1,19 +0,0 @@
|
|||||||
<?php
|
|
||||||
class UsersApi extends ApiController{
|
|
||||||
public function default(){
|
|
||||||
//$this->requireAuth();
|
|
||||||
$response = null;
|
|
||||||
|
|
||||||
$users = UserManager::getUsers(["user_id", "username", "at_home"]);
|
|
||||||
|
|
||||||
foreach ($users as $key => $user) {
|
|
||||||
$response[] = [
|
|
||||||
"userName" => $users['username'],
|
|
||||||
"homeStatus" => ($users['at_home']) ? true : false,
|
|
||||||
"avatarUrl" => getAvatarUrl($value['user_id']),
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->response($response);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user