[Jifty-commit] r4955 - in jifty/trunk: lib/Jifty/Plugin/OpenID

Jifty commits jifty-commit at lists.jifty.org
Mon Jan 28 10:51:50 EST 2008


Author: sartak
Date: Mon Jan 28 10:51:44 2008
New Revision: 4955

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm

Log:
 r51105 at onn:  sartak | 2008-01-28 10:48:54 -0500
 Allow AuthenticateOpenID and VerifyOpenID for some pages


Modified: jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/OpenID/Dispatcher.pm	Mon Jan 28 10:51:44 2008
@@ -19,6 +19,7 @@
 };
 
 before qr'^/openid/login' => run {
+    Jifty->api->allow('AuthenticateOpenID');
     set action => Jifty->web->new_action(
         class   => 'AuthenticateOpenID',
         moniker => 'authenticateopenid'
@@ -26,6 +27,7 @@
 };
 
 before qr'^/openid/verify' => run {
+    Jifty->api->allow('VerifyOpenID');
     Jifty->web->request->add_action(
         class   => 'VerifyOpenID',
         moniker => 'verifyopenid'


More information about the Jifty-commit mailing list