commit c0f71111d6a73da0a4ffd123b03dcade03b6742d Author: Jonny Barnes <jonny@jonnybarnes.uk> Date: Fri Oct 12 18:48:45 2018 +0100 Remove facebook as a syndication target, update twitter profile image
26 lines
815 B
PHP
26 lines
815 B
PHP
<?php
|
||
|
||
/*
|
||
* Here we define the syndication targets to be
|
||
* returned by the micropub endpoint.
|
||
*/
|
||
|
||
return [
|
||
// if you don’t have any targets, then set this to 'targets' => [];
|
||
'targets' => [
|
||
[
|
||
'uid' => 'https://twitter.com/jonnybarnes',
|
||
'name' => 'jonnybarnes on Twitter',
|
||
'service' => [
|
||
'name' => 'Twitter',
|
||
'url' => 'https://twitter.com',
|
||
'photo' => 'https://upload.wikimedia.org/wikipedia/en/9/9f/Twitter_bird_logo_2012.svg',
|
||
],
|
||
'user' => [
|
||
'name' => 'jonnybarnes',
|
||
'url' => 'https://twitter.com/jonnybarnes',
|
||
'photo' => 'https://pbs.twimg.com/profile_images/875422855932121089/W628ZI8w_400x400.jpg',
|
||
],
|
||
],
|
||
]
|
||
];
|