mirror of
https://github.com/friendica/friendica
synced 2024-11-09 23:02:54 +00:00
Added:
- config key 'config', 'api_mastodon_banner', see discussion at https://b65.me.in/display/67fef576-1564-a27a-405e-c17705255720 - the administrator can now customize it for Mastodon contacts - credits goes to @betamax65@b65.me.in
This commit is contained in:
parent
1f63fe96c5
commit
c5a52271df
2 changed files with 5 additions and 1 deletions
|
@ -91,7 +91,7 @@ class Instance extends BaseDataTransferObject
|
|||
$this->version = '2.8.0 (compatible; Friendica ' . App::VERSION . ')';
|
||||
$this->urls = null; // Not supported
|
||||
$this->stats = new Stats($config, $database);
|
||||
$this->thumbnail = $baseUrl . '/images/friendica-banner.jpg';
|
||||
$this->thumbnail = $baseUrl . $config->get('config', 'api_mastodon_banner');
|
||||
$this->languages = [$config->get('system', 'language')];
|
||||
$this->max_toot_chars = (int)$config->get('config', 'api_import_size', $config->get('config', 'max_import_size'));
|
||||
$this->registrations = ($register_policy != Register::CLOSED);
|
||||
|
|
|
@ -91,6 +91,10 @@ return [
|
|||
// php_path (String)
|
||||
// Location of PHP command line processor.
|
||||
'php_path' => 'php',
|
||||
|
||||
// api_mastodon_banner (String)
|
||||
// Banner for Mastodon API
|
||||
'api_mastodon_banner' => '/images/friendica-banner.jpg',
|
||||
],
|
||||
'system' => [
|
||||
// adjust_poll_frequency (Boolean)
|
||||
|
|
Loading…
Reference in a new issue