Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 5.0.6
- Fix: Vetting with a self asserted token is not allowed when adding a token, the user is always
directed to the RA vetting page #466

# 5.0.5
- Use a SAML (entitlement) attribute to decide what activation flows
a user may use #336
Expand Down
16 changes: 8 additions & 8 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function mayRegisterSelfAssertedTokens(Identity $identity): bool

public function maySelfVetSelfAssertedTokens(Identity $identity): bool
{
return $this->authorizationService->assertRegistrationOfSelfAssertedTokensIsAllowed($identity);
return $this->authorizationService->assertSelfVettingOfSelfAssertedTokensIsAllowed($identity);
}

public function mayRegisterRecoveryTokens(Identity $identity): bool
Expand Down