Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

api.users.router.php-DEL 167B

123456789
  1. <?php
  2. $this->any('/user', function ($request, $response, $args) {
  3. global $user;
  4. $response = $response->withJson($user->getList());
  5. return $response;
  6. });