Skip to content

Commit 2a3173e

Browse files
committed
Merge branch 'main' into feature/jti
2 parents e7da138 + 3eaba1e commit 2a3173e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

solid/lib/Controller/ProfileController.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,8 @@ private function getUserProfile($userId) {
290290
'preferences' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/preferences.ttl"))),
291291
'privateTypeIndex' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/privateTypeIndex.ttl"))),
292292
'publicTypeIndex' => $this->urlGenerator->getAbsoluteURL($this->urlGenerator->linkToRoute("solid.storage.handleGet", array("userId" => $userId, "path" => "/settings/publicTypeIndex.ttl"))),
293-
'storage' => $this->getStorageUrl($userId)
293+
'storage' => $this->getStorageUrl($userId),
294+
'issuer' => $this->urlGenerator->getBaseURL()
294295
);
295296
return $profile;
296297
}
@@ -325,6 +326,7 @@ private function generateTurtleProfile($userId) {
325326
solid:account ser:;
326327
solid:privateTypeIndex <<?php echo $profile['privateTypeIndex']; ?>>;
327328
solid:publicTypeIndex <<?php echo $profile['publicTypeIndex']; ?>>;
329+
solid:oidcIssuer <<?php echo $profile['issuer']; ?>>;
328330
<?php
329331
foreach ($profile['friends'] as $key => $friend) {
330332
?>

0 commit comments

Comments
 (0)