[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 Cordeiro
parent 067cc81ebb
commit 883621ba34
1 changed files with 4 additions and 0 deletions

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(