mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #1119 from pixelfed/frontend-ui-refactor
Update AP transformers
This commit is contained in:
commit
0ba1a820c0
|
@ -30,6 +30,11 @@ class CreateNote extends Fractal\TransformerAbstract
|
||||||
'@context' => [
|
'@context' => [
|
||||||
'https://www.w3.org/ns/activitystreams',
|
'https://www.w3.org/ns/activitystreams',
|
||||||
'https://w3id.org/security/v1',
|
'https://w3id.org/security/v1',
|
||||||
|
[
|
||||||
|
'Hashtag' => 'as:Hashtag',
|
||||||
|
'sensitive' => 'as:sensitive',
|
||||||
|
'commentsDisabled' => 'as:commentsDisabled',
|
||||||
|
]
|
||||||
],
|
],
|
||||||
'id' => $status->permalink(),
|
'id' => $status->permalink(),
|
||||||
'type' => 'Create',
|
'type' => 'Create',
|
||||||
|
@ -58,6 +63,7 @@ class CreateNote extends Fractal\TransformerAbstract
|
||||||
];
|
];
|
||||||
})->toArray(),
|
})->toArray(),
|
||||||
'tag' => $tags,
|
'tag' => $tags,
|
||||||
|
'commentsDisabled' => (bool) $status->comments_disabled,
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,6 +30,11 @@ class Note extends Fractal\TransformerAbstract
|
||||||
'@context' => [
|
'@context' => [
|
||||||
'https://www.w3.org/ns/activitystreams',
|
'https://www.w3.org/ns/activitystreams',
|
||||||
'https://w3id.org/security/v1',
|
'https://w3id.org/security/v1',
|
||||||
|
[
|
||||||
|
'Hashtag' => 'as:Hashtag',
|
||||||
|
'sensitive' => 'as:sensitive',
|
||||||
|
'commentsDisabled' => 'as:commentsDisabled',
|
||||||
|
]
|
||||||
],
|
],
|
||||||
'id' => $status->url(),
|
'id' => $status->url(),
|
||||||
'type' => 'Note',
|
'type' => 'Note',
|
||||||
|
@ -51,6 +56,7 @@ class Note extends Fractal\TransformerAbstract
|
||||||
];
|
];
|
||||||
})->toArray(),
|
})->toArray(),
|
||||||
'tag' => $tags,
|
'tag' => $tags,
|
||||||
|
'commentsDisabled' => (bool) $status->comments_disabled,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue