mirror of
https://github.com/friendica/friendica
synced 2024-12-03 04:55:21 +01:00
11 lines
183 B
PHP
11 lines
183 B
PHP
<?php
|
|
namespace Friendica\Worker;
|
|
|
|
require_once("include/threads.php");
|
|
|
|
class ThreadUpdate {
|
|
public static function execute() {
|
|
update_threads();
|
|
update_threads_mention();
|
|
}
|
|
}
|