-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from zeroid/master
Give priority to oidcIssuer in WebID profile
- Loading branch information
Showing
5 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = ` | ||
@prefix solid: <http://www.w3.org/ns/solid/terms#>. | ||
@prefix foaf: <http://xmlns.com/foaf/0.1/>. | ||
@prefix pim: <http://www.w3.org/ns/pim/space#>. | ||
@prefix schema: <http://schema.org/>. | ||
@prefix ldp: <http://www.w3.org/ns/ldp#>. | ||
<> | ||
a foaf:PersonalProfileDocument ; | ||
foaf:primaryTopic <#me> . | ||
<#me> | ||
a schema:Person ; | ||
solid:account </> ; # link to the account uri | ||
pim:storage </> ; # root storage | ||
solid:oidcIssuer <https://provider.com> . | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters