Removed Following (use RSS), allow unix for Redis

This commit is contained in:
Pablo Ferreiro
2022-02-06 14:22:23 +01:00
parent 84023905ff
commit 3772eabd99
23 changed files with 144 additions and 205 deletions
-15
View File
@@ -1,15 +0,0 @@
<?php
namespace App\Controllers;
use App\Helpers\Following;
use App\Helpers\Misc;
use App\Models\FollowingTemplate;
class FollowingController {
static public function get() {
$users = Following::getUsers();
$feed = Following::getAll($users);
$latte = Misc::latte();
$latte->render(Misc::getView('following'), new FollowingTemplate($users, $feed));
}
}