(notification, isActivityStreams = false)
| 53 | } |
| 54 | |
| 55 | function serializeToJSONLD (notification, isActivityStreams = false) { |
| 56 | notification['@context'] = [CONTEXT_NOTIFICATION] |
| 57 | if (!isActivityStreams) { |
| 58 | notification['@context'].unshift(CONTEXT_ACTIVITYSTREAMS) |
| 59 | } |
| 60 | return JSON.stringify(notification, null, 2) |
| 61 | } |
| 62 | |
| 63 | export default function rdfTemplate (props) { |
| 64 | const { mediaType } = props |