Fix JSON-LD contexts
This commit is contained in:
parent
f55ef1d7ef
commit
c14a505456
1 changed files with 3 additions and 2 deletions
|
@ -8,10 +8,11 @@ pub(crate) fn lemmy_context() -> Result<Vec<AnyBase>, LemmyError> {
|
||||||
"sc": "http://schema.org#",
|
"sc": "http://schema.org#",
|
||||||
"sensitive": "as:sensitive",
|
"sensitive": "as:sensitive",
|
||||||
"stickied": "as:stickied",
|
"stickied": "as:stickied",
|
||||||
|
"pt": "https://join.lemmy.ml#"
|
||||||
"comments_enabled": {
|
"comments_enabled": {
|
||||||
"kind": "sc:Boolean",
|
"type": "sc:Boolean",
|
||||||
"id": "pt:commentsEnabled"
|
"id": "pt:commentsEnabled"
|
||||||
}
|
}
|
||||||
}))?;
|
}))?;
|
||||||
Ok(vec![AnyBase::from(context()), context_ext])
|
Ok(vec![AnyBase::from(context()), context_ext, "https://w3id.org/security/v1"])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue