Skip to content

Commit

Permalink
Add support for eduPersonUniqueID.
Browse files Browse the repository at this point in the history
This is dependent on the attribute being available in the database
with this specific ID (259), and also the attributemaps from
SimpleSAMLphp.
  • Loading branch information
dnmvisser committed Mar 28, 2017
1 parent a0327cb commit ee1b33a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/AccountLinker/Store/SQLStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,11 @@ public function addIdentifiableAttributes()
':entity_id' => $this->_getEntityidId(),
':aorder' => 3
));
$stmt->execute(array(
':attribute_id' => 259,
':entity_id' => $this->_getEntityidId(),
':aorder' => 4
));
return $this;
}

Expand Down

0 comments on commit ee1b33a

Please sign in to comment.