[CORE] Better queues defaults

This commit is contained in:
Diogo Cordeiro
2019-12-11 02:20:54 +00:00
parent dc211c9c44
commit 60446dfc20
12 changed files with 68 additions and 61 deletions

View File

@@ -37,12 +37,14 @@ class UnQueuePlugin extends Plugin
public function onPluginVersion(array &$versions): bool
{
$versions[] = array('name' => 'UnQueue',
'version' => self::PLUGIN_VERSION,
'author' => 'Miguel Dantas',
'description' =>
// TRANS: Plugin description.
_m('Plugin using the database as a backend for GNU social queues'));
$versions[] = ['name' => 'UnQueue',
'version' => self::PLUGIN_VERSION,
'author' => 'Miguel Dantas',
'homepage' => GNUSOCIAL_ENGINE_URL,
'description' =>
// TRANS: Plugin description.
_m('Plugin using the database as a backend for GNU social queues')
];
return true;
}
};