auto-login upon registration

2006-02-10 Thread Jeremy Jones
I have the following view which adds users to the User table (and SimpleUserManipulator is a class I've defined). Is there a way I can automatically login the user once the record is saved? Here is the register view function: def register(request): manipulator = SimpleUserManipulator()

Re: auto-login upon registration

2006-02-10 Thread Adrian Holovaty
On 2/10/06, Jeremy Jones <[EMAIL PROTECTED]> wrote: > I have the following view which adds users to the User table (and > SimpleUserManipulator is a class I've defined). Is there a way I can > automatically login the user once the record is saved? Hey Jeremy, Sure, just do this, after you've cr

Re: auto-login upon registration

2006-02-10 Thread Jeremy Jones
On Fri, 10 Feb 2006 09:29:34 -0600 Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 2/10/06, Jeremy Jones <[EMAIL PROTECTED]> wrote: > > I have the following view which adds users to the User table (and > > SimpleUserManipulator is a class I've defined). Is there a way I > > can automatically