This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/src/Controllers/AuthController.php

16 lines
294 B
PHP
Raw Normal View History

<?php
namespace Szurubooru\Controllers;
final class AuthController extends AbstractController
{
2014-08-30 15:04:33 +02:00
public function registerRoutes(\Szurubooru\Router $router)
{
$router->post('/api/login', [$this, 'login']);
$router->get('/api/login', [$this, 'login']);
}
public function login()
{
}
}