-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(auth): Zope root cookie login form auth
Integrate upstream `Products.PluggableAuthService` and `Products.PlonePAS` changes to the Zope root `/acl_users`: - fix some broken plugin configuration on install and upgrade - add a `GenericSetup` profile to convert to a simple cookie login form which fixes logout issues when used with other plugins such as the JWT token plugin Note that the only changes here are adding test coverage confirming the upstream changes have the intended effect when combined with the JWT token plugin. Upstream links: zopefoundation/Products.PluggableAuthService#107 (comment) zopefoundation/Products.PluggableAuthService@44ac67f
- Loading branch information
1 parent
f9097a0
commit 971b3b1
Showing
2 changed files
with
119 additions
and
0 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ parts = | |
develop = . | ||
sources-dir = extras | ||
auto-checkout = | ||
Products.PlonePAS | ||
# plone.rest | ||
|
||
allow-hosts = | ||
|
@@ -35,6 +36,8 @@ allow-hosts = | |
[versions] | ||
# Do not use a release of plone.restapi: | ||
plone.restapi = | ||
# Fix Zope root `/acl_users` logout | ||
Products.PluggableAuthService = 2.7.0 | ||
|
||
[instance] | ||
recipe = plone.recipe.zope2instance | ||
|
@@ -204,6 +207,7 @@ output = ${buildout:directory}/bin/zpretty-run | |
mode = 755 | ||
|
||
[sources] | ||
Products.PlonePAS = git https://github.com/plone/Products.PlonePAS.git pushurl[email protected]:plone/Products.PlonePAS.git branch=feat-zope-root-cookie-challenge | ||
plone.rest = git git://github.com/plone/plone.rest.git pushurl[email protected]:plone/plone.rest.git branch=master | ||
plone.schema = git git://github.com/plone/plone.schema.git pushurl[email protected]:plone/plone.schema.git branch=master | ||
Products.ZCatalog = git git://github.com/zopefoundation/Products.ZCatalog.git pushurl[email protected]:zopefoundation/Products.ZCatalog.git |
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