This commit is contained in:
Diogo Cordeiro 2018-07-31 23:11:44 +01:00
parent 3c021db5f0
commit 80265024a7
2 changed files with 36 additions and 29 deletions

View File

@ -91,6 +91,9 @@ class apSharedInboxAction extends ManagedAction
// Process request
switch ($data->type) {
// Data available:
// Profile $actor_profile
// string|object $data->object
case "Create":
require_once __DIR__ . DIRECTORY_SEPARATOR . "inbox" . DIRECTORY_SEPARATOR . "Create.php";
break;

View File

@ -30,8 +30,12 @@ if (!defined('GNUSOCIAL')) {
}
try {
if (isset($data->object->id)) {
ActivityPubPlugin::get_local_notice_from_url($data->object->id)->repeat($actor_profile, "ActivityPub");
ActivityPubReturn::answer("Notice repeated successfully.");
} else {
ActivityPubReturn::error('No object id was specified.');
}
} catch (Exception $e) {
ActivityPubReturn::error($e->getMessage(), 403);
}