Update AP Transformers, add commentsEnabled from PeerTube

This commit is contained in:
Daniel Supernault 2019-04-04 11:53:11 -06:00
parent d47edd8bed
commit 01931aea5f
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
2 changed files with 6 additions and 4 deletions

View File

@ -31,9 +31,10 @@ class CreateNote extends Fractal\TransformerAbstract
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
[
'sc' => 'http://schema.org#',
'Hashtag' => 'as:Hashtag',
'sensitive' => 'as:sensitive',
'commentsDisabled' => 'as:commentsDisabled',
'commentsEnabled' => 'sc:Boolean',
]
],
'id' => $status->permalink(),
@ -63,7 +64,7 @@ class CreateNote extends Fractal\TransformerAbstract
];
})->toArray(),
'tag' => $tags,
'commentsDisabled' => (bool) $status->comments_disabled,
'commentsEnabled' => (bool) !$status->comments_disabled,
]
];
}

View File

@ -31,9 +31,10 @@ class Note extends Fractal\TransformerAbstract
'https://www.w3.org/ns/activitystreams',
'https://w3id.org/security/v1',
[
'sc' => 'http://schema.org#',
'Hashtag' => 'as:Hashtag',
'sensitive' => 'as:sensitive',
'commentsDisabled' => 'as:commentsDisabled',
'commentsEnabled' => 'sc:Boolean',
]
],
'id' => $status->url(),
@ -56,7 +57,7 @@ class Note extends Fractal\TransformerAbstract
];
})->toArray(),
'tag' => $tags,
'commentsDisabled' => (bool) $status->comments_disabled,
'commentsEnabled' => (bool) !$status->comments_disabled,
];
}
}