[ActivityPub] Routes

ActivityPubPlugin:
- Update routes to properly use the updated URLMapper
This commit is contained in:
brunoccast 2019-08-04 00:56:49 +01:00 committed by Diogo Peralta Cordeiro
parent 9de1c34bc0
commit 37936d101e

View File

@ -141,21 +141,25 @@ class ActivityPubPlugin extends Plugin
$m->connect('user/:id', $m->connect('user/:id',
['action' => 'apActorProfile'], ['action' => 'apActorProfile'],
['id' => '[0-9]+'], ['id' => '[0-9]+'],
true,
$acceptHeaders); $acceptHeaders);
$m->connect(':nickname', $m->connect(':nickname',
['action' => 'apActorProfile'], ['action' => 'apActorProfile'],
['nickname' => Nickname::DISPLAY_FMT], ['nickname' => Nickname::DISPLAY_FMT],
true,
$acceptHeaders); $acceptHeaders);
$m->connect(':nickname/', $m->connect(':nickname/',
['action' => 'apActorProfile'], ['action' => 'apActorProfile'],
['nickname' => Nickname::DISPLAY_FMT], ['nickname' => Nickname::DISPLAY_FMT],
true,
$acceptHeaders); $acceptHeaders);
$m->connect('notice/:id', $m->connect('notice/:id',
['action' => 'apNotice'], ['action' => 'apNotice'],
['id' => '[0-9]+'], ['id' => '[0-9]+'],
true,
$acceptHeaders); $acceptHeaders);
$m->connect( $m->connect(