mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00

* feat: added oidc validation triples to template Signed-off-by: Wouter Termont <woutermont@gmail.com> * fix: Add missing newline Co-authored-by: Joachim Van Herwegen <joachimvh@gmail.com>
14 lines
371 B
Turtle
14 lines
371 B
Turtle
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
|
|
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
|
|
|
|
<>
|
|
a foaf:PersonalProfileDocument;
|
|
foaf:maker <{{webId}}>;
|
|
foaf:primaryTopic <{{webId}}>.
|
|
|
|
<{{webId}}>
|
|
a foaf:Person;
|
|
foaf:name "{{name}}";
|
|
solid:oidcIssuer <{{oidcIssuer}}> ;
|
|
solid:oidcIssuerRegistrationToken "{{oidcIssuerRegistrationToken}}" .
|