]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Console.php
Merge pull request #9882 from MrPetovan/bug/po2php-plural-conversion
[friendica.git] / src / Core / Console.php
index 86178c209dbef199156b0d9c778ea5fd90610340..f43b89e9e67cc1832090d00ad10598a6b40e5bcf 100644 (file)
@@ -51,7 +51,7 @@ Commands:
        docbloxerrorchecker    Check the file tree for DocBlox errors
        extract                Generate translation string file for the Friendica project (deprecated)
        globalcommunityblock   Block remote profile from interacting with this node
        docbloxerrorchecker    Check the file tree for DocBlox errors
        extract                Generate translation string file for the Friendica project (deprecated)
        globalcommunityblock   Block remote profile from interacting with this node
-       globalcommunitysilence Silence remote profile from global community page
+       globalcommunitysilence Silence a profile from the global community page
        archivecontact         Archive a contact when you know that it isn't existing anymore
        help                   Show help about a command, e.g (bin/console help config)
        autoinstall            Starts automatic installation of friendica based on values from htconfig.php
        archivecontact         Archive a contact when you know that it isn't existing anymore
        help                   Show help about a command, e.g (bin/console help config)
        autoinstall            Starts automatic installation of friendica based on values from htconfig.php
@@ -64,6 +64,7 @@ Commands:
        postupdate             Execute pending post update scripts (can last days)
        serverblock            Manage blocked servers
        storage                Manage storage backend
        postupdate             Execute pending post update scripts (can last days)
        serverblock            Manage blocked servers
        storage                Manage storage backend
+       relay                  Manage ActivityPub relay servers
 
 Options:
        -h|--help|-? Show help information
 
 Options:
        -h|--help|-? Show help information
@@ -92,6 +93,8 @@ HELP;
                'postupdate'             => Friendica\Console\PostUpdate::class,
                'serverblock'            => Friendica\Console\ServerBlock::class,
                'storage'                => Friendica\Console\Storage::class,
                'postupdate'             => Friendica\Console\PostUpdate::class,
                'serverblock'            => Friendica\Console\ServerBlock::class,
                'storage'                => Friendica\Console\Storage::class,
+               'relay'                  => Friendica\Console\Relay::class,
+               'fixapdeliveryworkertaskparameters' => Friendica\Console\FixAPDeliveryWorkerTaskParameters::class,
        ];
 
        /**
        ];
 
        /**