Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
pull/61/head
Maxence Lange 2018-11-28 09:40:20 -01:00
rodzic e6f82ce717
commit 63a1107178
2 zmienionych plików z 0 dodań i 14 usunięć

Wyświetl plik

@ -62,7 +62,6 @@ return [
['name' => 'ActivityPub#outbox', 'url' => '/@{username}/outbox', 'verb' => 'POST'],
['name' => 'ActivityPub#followers', 'url' => '/@{username}/followers', 'verb' => 'GET'],
['name' => 'ActivityPub#following', 'url' => '/@{username}/following', 'verb' => 'GET'],
['name' => 'ActivityPub#test', 'url' => '/inbox/{username}', 'verb' => 'POST'],
['name' => 'SocialPub#displayPost', 'url' => '/@{username}/{postId}', 'verb' => 'GET'],

Wyświetl plik

@ -226,19 +226,6 @@ class ActivityPubController extends Controller {
}
/**
* Testing method. does nothing.
*
* @NoCSRFRequired
* @PublicPage
*
* @return Response
*/
public function test(): Response {
return $this->success(['toto']);
}
/**
* Outbox. does nothing.
*