-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(auth): Zope root logout Basic auth assumptions
See also [the PAS issue](zopefoundation/Products.PluggableAuthService#107 (comment)).
- Loading branch information
1 parent
f35fa85
commit 120738d
Showing
6 changed files
with
53 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Logging in to or out of the Zope root ZMI or the API does the same in the other. | ||
[rpatterson] |
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
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,17 @@ | ||
<configure | ||
xmlns="http://namespaces.zope.org/zope" | ||
xmlns:monkey="http://namespaces.plone.org/monkey" | ||
xmlns:zcml="http://namespaces.zope.org/zcml" | ||
i18n_domain="plone.volto" | ||
> | ||
|
||
<include package="collective.monkeypatcher" /> | ||
|
||
<monkey:patch | ||
original="manage_zmi_logout" | ||
replacement=".manage_zmi_logout" | ||
class="App.Management.Navigation" | ||
description="Patch ZMI logout to remove Basic auth assumptions" | ||
/> | ||
|
||
</configure> |
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