mirror of
https://github.com/friendica/friendica
synced 2025-04-27 13:10:10 +00:00
"UpdateSuggestions" added
This commit is contained in:
parent
a1ad549e0b
commit
bf852cc096
3 changed files with 18 additions and 4 deletions
17
src/Worker/UpdateSuggestions.php
Normal file
17
src/Worker/UpdateSuggestions.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?php
|
||||
/**
|
||||
* @file src/Worker/UpdateSuggestions.php
|
||||
*/
|
||||
namespace Friendica\Worker;
|
||||
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\Model\GContact;
|
||||
|
||||
class UpdateSuggestions
|
||||
{
|
||||
// Discover other servers for their contacts.
|
||||
public static function execute()
|
||||
{
|
||||
GContact::updateSuggestions();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue