Re: logout() method for custom authentication backends

2008-12-01 Thread James Bennett
On Mon, Dec 1, 2008 at 8:10 AM, David Reynolds <[EMAIL PROTECTED]> wrote: > That doesn't help if you want to continue using the login/logout views > from django.contrib.auth.views Since you can drop callables directly into URL patterns, you can write a decorator which does what you need, import

Re: logout() method for custom authentication backends

2008-12-01 Thread David Reynolds
On 1 Dec 2008, at 12:27, Julien Phalip wrote: > I think you could achieve that without patching Django. You could > simply create a custom view which wraps around auth.logout and calls > your other method. That doesn't help if you want to continue using the login/logout views from

Re: logout() method for custom authentication backends

2008-12-01 Thread Julien Phalip
On Dec 1, 11:07 pm, David Reynolds <[EMAIL PROTECTED]> wrote: > On 1 Dec 2008, at 11:49, David Reynolds wrote: > > I have a custom authentication backend that requires a method to be > > run to log out of the system.  It would be quite useful if there was a > > way > > to hook into the

Re: logout() method for custom authentication backends

2008-12-01 Thread David Reynolds
On 1 Dec 2008, at 11:49, David Reynolds wrote: > > I have a custom authentication backend that requires a method to be > run to log out of the system. It would be quite useful if there was a > way > to hook into the django.contrib.auth.logout method to run this custom > method. > > The best

logout() method for custom authentication backends

2008-12-01 Thread David Reynolds
I have a custom authentication backend that requires a method to be run to log out of the system. It would be quite useful if there was a way to hook into the django.contrib.auth.logout method to run this custom method. The best way I can think of is to add a logout method to the