Merge pull request #1122 from pixelfed/frontend-ui-refactor

Update AP Transformers, add commentsEnabled from PeerTube
pull/1143/head
daniel 6 years ago committed by GitHub
commit 1fb61871ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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,
]
];
}

@ -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,
];
}
}

Loading…
Cancel
Save