[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',
['action' => 'apActorProfile'],
['id' => '[0-9]+'],
true,
$acceptHeaders);
$m->connect(':nickname',
['action' => 'apActorProfile'],
['nickname' => Nickname::DISPLAY_FMT],
true,
$acceptHeaders);
$m->connect(':nickname/',
['action' => 'apActorProfile'],
['nickname' => Nickname::DISPLAY_FMT],
true,
$acceptHeaders);
$m->connect('notice/:id',
['action' => 'apNotice'],
['id' => '[0-9]+'],
true,
$acceptHeaders);
$m->connect(